Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Compiler disagreement on using std::vector in constexpr context

Where in the Standard does it say that calling B::foo() below is legal?

Is simultaneous access to volatile a data race? Even though it seems to work in practice?

constexpr member function of non constexpr constructible class

Deleting a nullptr may or may not call a deallocation function. Why not guarantee the latter?

Is there any practical difference between an inline function having internal and external linkage, with compiler optimization?

How does this pointer aliasing work?

Trying to understand [basic.def.odr]/2 in C++14 (N4140)

c++ language-lawyer c++14

Why does invoking a function with a pointer to one member variable inhibit optimization of other member variable?

Multiple occurrences of placeholder type 'auto' in a type

Reversal of primary comparison operators (==, <=>) in C++20

c++ language-lawyer c++20

Is the use of platform-provided synchronous operations a kind of UB?

Is adding a uintptr_t to a pointer symmetric?

Substituting template parameter with its known value into a typedef is inconsistent between compilers

Result of comparing hardcoded strings with ==

c language-lawyer