Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is a std::string implementation conformant where 's.c_str() + s.size()' is not necessarily the same as '&s[s.size()]'?

When static global variable are created in C++

c++ language-lawyer

What happens to the underlying storage upon vector's copy/move assignment?

The concept of a type name scope in C11

c scope c99 language-lawyer c11

Multiple inheritance makes private member accessible

Why does this using another constant variable defined later qualify an expression as a non constant expression

Is a specialization implicitly instantiated if it has already been implicitly instantiated?

Why does the compiler choose this generic method with a class type parameter when invoked with an unrelated interface type?

Can a pointer to an incomplete type be incomplete?

Does this program violate the ODR?

Obviously ambiguous call does not cause a compilation error on GCC

std::type_info::hash_code() uniqueness and the meaning of "should"

c++ language-lawyer rtti abi

Should a name found in a dependent base class hide a namespace name at the point of instantiation?

Allocating memory for a part of structure

Pointer to one before first element of array

C++ lambda capturing by copy of parent lambda's captured value

Possible MSVC compiler bug

Requires-clause appears after template template parameter: is this legal grammar?

Is it UB to access 'padded' bytes?

Variadic macro with no arguments for its variadic parameter