Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is the compiler allowed to optimize out dynamic_cast of a volatile pointer when the compiler doesn't see a possible type which can fulfill the cast?

Is getting the decltype of a deduced member function inside the trailing return type of another member function well-formed?

c++ language-lawyer

What is the meaning of "if the context from which the specialization is referenced depends on a template parameter"?

Variation on the type punning theme: in-place trivial construction

Why does Clang generate different code for reference and non-null pointer arguments?

Why is there not a no-throw guarantee in the standard for std::set::extract() and std::set::insert(nh)?

Selection of inherited operator contrary to `using` clause in C++

Where does the C++ standard describe the casting of pointers to primitives?

c++ casting language-lawyer

The snippet shown below compiles in Coliru and Ideone, but according to iso § 8.5 p6 it shouldn't, or am I missing something?

Is there a case missing in §8.5 p17 (semantics of initializers) of N3797?

C++11 cross compiler/standard library random distribution reproducibility

Unclosed quote in a CSS block

css syntax language-lawyer

constexpr member functions that don't use this?

Behavior of fputc() for a stream opened with read mode

decltype(auto), trailing return type and sfinae: can we mix them?

Are checked guard parameter packs cause of ill-formed programs in case of specializations?

Point of evaluation of exception specification

C++ block scope extern declaration linkage, confusing C++ standard explanation

Evaluating noexcept specifier before template type deduction

MSVC and constexpr for function parameter?