Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Clojure: how is defn different from fn?

clojure language-lawyer

Is it legal C++ to declare a nested namespace `std`?

Why does the C++ standard's index have this entry for "undefined behavior"?

c++ c++11 language-lawyer

Macro Expansion: Argument with Commas

Why doesn't function declared inside other function participate in argument dependent lookup?

Could a class type with deleted default constructor be default initialized?

Sequence points - is this gcc warning a bug?

c++ c++17 language-lawyer

Anything in std::atomic is wait-free?

According to §12.1/4 in the C++11 Standard, the code shouldn't compile

Is it standard behaviour that adding const to size_t can cause compile failure?

Why does gcc hide overloaded functions in the global namespace?

Template ignores [[nodiscard]] attribute

Is calculating address difference undefined behaviour?

c++ c++11 language-lawyer

Force all classes to implement / override a 'pure virtual' method in multi-level inheritance hierarchy

Is it possible to hash pointers in portable C++03 code?

Is layout-compatibility in the c++11 (working draft) standard too weak?

Bitwise operators and signed types

Does JPA return "null" or empty collection for a collection property that is empty in the DB?

Why does the parallel for_each require forward iterators?

Is std::decay_t<T> decay_copy(T&&) equivalent to auto decay_copy(auto&&)?