Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Do I still get default copy constructor and operator= if I define ones with non-const arguments?

Is scanf guaranteed to not change the value on failure?

c scanf language-lawyer

Constexpr compound assignment operator in clang and gcc

Confusion around function call resolution

Does the following actually violate the ODR?

Are checked guard parameter packs cause of ill-formed programs?

When an `int` at max value and tested with with postfix ++, is code well-defined?

c language-lawyer

Are local class rules aligned to c++14 return type deduction?

Anonymous temporaries and class template argument deduction - gcc vs clang

Does reinterpret_casting std::aligned_storage* to T* without std::launder violate strict-aliasing rules? [duplicate]

Why is int(a) an expression and int(unsigned(a)) a type-id in the example below?

c++ language-lawyer

Template template argument causes compiler error under Clang but not GCC [duplicate]

Is overflow of an unsigned bit field guaranteed to wrap-around?

Default template argument of a class template has no effect if placed after the definition of that class template

c++ language-lawyer

Which guarantees does the C++ standard have when it comes to issuing diagnostic messages?

c++ language-lawyer

Alias of a template. Who's right?

c++ language-lawyer

Can I define a constexpr anonymous/unnamed variable?

How come a new-expression can correctly produce the pointer type, even though it should return void*? [duplicate]

Are captureless lambdas structural types?

name lookup for typedef is buggy in GNU compiler?