Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Are enumeration types layout compatible with their underlying type?

std::vector etc unnecessarily (erroneously?) instantiates nested template argument type

How does the compiler find the template function X::max(T const&, T const&) through ADL in the code below?

Dependent qualified name lookup in C++14

Where in the C++11 standard does it prohibit 'template <typename T> class A {...}; template <typename T> class A<int> {...};' (if anywhere)?

Passing a dummy lock to std::condition_variable_any::wait

Can undefined behavior which would follow a getc() alter program behavior if the getc() exits via SIGINT

Effect of single hash in object-like macro

Trying to understand [class.qual]/2 in the C++ Standard

How are fold expressions used in the partial ordering of constraints?

Is copy elision valid in default function arguments?

c++ language-lawyer

Template parameters not deducible in partial specialization in gcc6, for a case that used to work in gcc5

Why do inline elements behave like block level elements when floated?

Initialization of an array of non-moveable objects: why does such code fail to compile on GCC?

c++ arrays gcc language-lawyer

Segmentation fault for lambda function in non-static data member initializer

c++ c++11 gcc language-lawyer

Is the initializer of a constexpr variable at class scope allowed to reference the variable?

C++17 Purpose of std::from_chars and std::to_chars?

A issue about the second phase name lookup for default argument

Can we apply content not explicitly cited from the normative references to the C++ standard?

Will a void* always have the same representation as a char*?

c pointers language-lawyer