Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Why not modify key of associative container?

c++ c++11 std language-lawyer

Why can't I access a default argument in its initializer in gcc?

c++ c++11 language-lawyer

Interaction between decltype and class member name shadowing an external name

A flaw in C++ overload resolution rules?

constexpr object with mutable member

Is having a function header that return an abstract type legal?

Automatically detect C++14 "return should use std::move" situation

Using a constexpr static member of a reference as template argument

c++ language-lawyer c++17

Do any C++11 thread-safety guarantees apply to third-party thread libraries compiled/linked with C++11?

Why can I use private default constructor in decltype()?

Using a temporary array as an lvalue

What can be said about the value of fundamental type members of moved from object during move construction?

static_assert in for-init-statement of the for statement

c++ c++11 language-lawyer

Destruction Order of Meyers Singletons

c++ language-lawyer

C++ why the type of parameter of atomic_load is pointer instead of reference?

c++ c++11 stl language-lawyer

What's the purpose of layout-compatible types?

Why is it illegal to bind an r-value to a const l-value reference in special member functions?

Can reinterpret_cast (or any cast) convert xvalues to lvalues?

extern declaration, T* v/s T[]

C++ Is constructing object twice using placement new undefined behaviour?