Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Why is the enclosing type of a static lambda member incomplete?

List-initialization of an array without temporaries - not working in GCC

c++ c++11 gcc language-lawyer

Buffer overrun with bit-fields and value initialization - compiler bug or undefined behavior?

Which is the best viable operator == function between these two declarations?

Clang vs. GCC: Friend-ing a global function via qualified/unqualified names

c++ gcc clang language-lawyer

Is vector::insert allowed to reserve only once and avoid further capacity checks?

Why default argument can't be added later in template functions?

Does copying an empty object involve accessing it

c++ language-lawyer

Is omitting return statement undefined behaviour in C89 (aka ANSI C)?

c language-lawyer c89

Does the ECMAScript specification allow Array to be "superclassable"?

Can a standard-compliant compiler reject code containing dynamic_cast downcast from non-polymorphic type?

Can uint8_t be a non-character type?

c language-lawyer

What is the rule that allows `this->` to access members of dependent base classes?

Is it illegal get `sizeof` non-static member of struct nested within class template?

Is it legal to use a const value captured in a lambda as a template argument?

Is creating a pointer one past the end of a non-array pointer not derived from unary operator & undefined behavior in C++17?

shouldn't std::pair<T1,T2> have trivial default constructor if T1 and T2 have?

Assignment between union members

c++ language-lawyer unions

Should a C++ temporary be constant?

Do structured bindings and forwarding references mix well?