Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Why do iterators need to be default-constructible

Given int **p1 and const int**p2 is p1 == p2 well formed?

C++ namespace collision in copy constructor

Is double-braced scalar initialization allowed by the C++ standard?

c++ c++11 language-lawyer

Is std::any_of required to follow short circuit logic?

c++ c++11 stl language-lawyer

Are functions calls in a constructor's initializer-list sequenced?

How undefined is undefined behavior?

What is the correct way to convert 2 bytes to a signed 16-bit integer?

c casting language-lawyer

Flexible array members can lead to undefined behavior?

Is there a pure virtual function in the C++ Standard Library?

Alternative for-loop syntax [duplicate]

c for-loop language-lawyer

Is argv[n] writable?

c language-lawyer

constexpr exp, log, pow

Why do gcc and clang each produce different output for this program? (conversion operator vs constructor)

Reinterpreting a union to a different union

c++ c++11 language-lawyer

Does printf("%x",1) invoke undefined behavior?

Is it defined behavior to reference an early member from a later member expression during aggregate initialization?

What is the modern, correct way to do type punning in C++?

Meaning of default initialization changed in C++11?

Why does std::unique_ptr operator* throw and operator-> does not throw?

c++ c++11 language-lawyer