Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

How does binary I/O of POD types not break the aliasing rules?

decltype with function template which has default argument make the confused result(a funny problem or gcc's bug)

Can a static variable be initialized with a static constant?

c language-lawyer

clang says call to void consteval function is not a constant expression

MSVC Bug? Overloaded member not found for constrained function

Why does bool(val) prefer double implicit conversions over val.operator bool()?

Nested classes with forward declaration cause an error in clang++, but pass without warning on g++

What is the meaning of Note 1 in the C++ class member name lookup rules?

c++ language-lawyer c++23

Is it valid to overload function with extra non-deducible template parameter?

Ambiguity in case of multiple inheritance and spaceship operator in C++20

Is reading a variable outside its lifetime during constant evaluation diagnosable?

Overloading static and non-static member function with constraint

Intel C++ compiler (icpc 14.0): "a derived class is not allowed here"

Does `const &&` bind to all prvalues (and xvalues)?

Can a throw or delete expression ever be dependent?

Variadic template parameters of one specific type

Why C++ does not allow function parameters used for default values latter parameters?

Using argc in a constexpr, is it strictly required that any sub-expression involved be a constant expression?

Differences of the interpretation of a non-dependent construct between definition context and point of instantiation in c++

Calling a constexpr method through a reference - is the result a constant expression?