Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Partial ordering on T*... and const T&

c++ language-lawyer

Should a Haskell parser allow Unicode digits in numeric literals?

Do Derived1::Base and Derived2::Base refer to the same type?

Which part of the C++ standard prevents explicitly specifying this template's arguments?

Why does typedef struct produce a link failure

c++ language-lawyer

Variable with same name as type - which compiler is right?

What is the lifetime of the target of pointer-to-function pointing to a lambda?

c++ lambda language-lawyer

Is it legal to initialize a thread_local variable in the destructor of a global variable?

Converting a forwarding lambda to a function pointer

What does "strongly happens before" mean?

Why can we not create trivially constructible objects using malloc if the trivial default constructor performs no action?

c++ language-lawyer

Why is the defaulted default constructor deleted for a union or union-like class?

c++ c++17 language-lawyer

What is the Java grammar that allows "new int[] {0}[0] = 1;" to compile?

Can the type difference between constants 32768 and 0x8000 make a difference?

c language-lawyer

Is it possible to use the `auto` keyword as a return type in a function pointer declaration with initialization?

C++17: explicit conversion function vs explicit constructor + implicit conversions - have the rules changed?

What C program behaves differently in run-time when compiled with C89 and C99?

c language-lawyer c99 c89

Is there a practical use for a `volatile restrict` pointer?

Non-existing identifier used as default argument in non-instantiated function template

Can bitwise operators have undefined behavior?