Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Where does the standard define that a volatile variable can change?

Can I dereference std::string.end()?

c++ string language-lawyer std

Function template overload resolution, dependent and non-dependent parameters

What are the rules for standard library containers and incomplete types?

Why does C++17 if statement with initializer not work as expected?

Pointer arithmetics and comparison within a structure

can rethrow_exception really throw the same exception object, rather than a copy?

c++ c++11 language-lawyer

clang++ fails but g++ succeeds on using a cast to const-unrelated-type operator in an assignment

Can I rely on the order of an unordered map?

Reinterpret struct with members of the same type as an array in a standard compliant way [duplicate]

Does the standard state that copies must be equivalent?

Are compilers allowed to evaluate tautologies in static assert [duplicate]

Why can't a modifiable lvalue have an array type?

c language-lawyer

Why is comma operator called inside operator [] but not inside operator ()?

Why doesn't clang allow accessing a nested enum class through an instance?

c++ clang language-lawyer

Template dependent name resolution should not find declarations with no linkage?

Dependent non-type parameter packs: what does the standard say?

What exactly does it mean to say a C++ object is movable?

C++ std::map named requirements allocator-aware container

Is (a = 0, a) + (a =1, a) undefined behaviour for int a?

c language-lawyer