Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Does the standard require `operator->()` to be defined for past-the-end non-contiguous iterators?

May a header from the C standard library include another header?

Imaginary deduction guides

c++ language-lawyer c++20

Can any char be converted in bool using std::bit_cast?

Can you explicitly provide template arguments to std::gcd?

c++ language-lawyer c++23

Is it undefined behavior to compare a character array char u[10] with a string literal "abc"

At which point are default template arguments instantiated in C++?

What is the value category of result yielded from shift operators, bit-wise operators, and sizeof operator?

Can constructor's member initializer include initialization of another member?

reference types and literal types

c++ c++11 language-lawyer

Why do C++20 concepts cause cyclic constraint errors while old-school SFINAE does not?

Do C++ standard library algorithms use std::advance

C++11: What prevents stores from lifting past the start of a lock's critical section?

Does casting to a char pointer to increment a pointer by a certain amount and then accessing as a different type violate strict aliasing?