Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Does the C++ standard require a binary machine?

c++ language-lawyer

Is converting between pointer-to-T, array-of-T and pointer-to-array-of-T ever undefined behaviour?

c++ c language-lawyer

c++ standard section id where its mentioned that Destructors are implicitly no throw

I think I can understand §5.3.4/11 in N4140, but the notion of an allocation function which has been extended is incomprehensible to me

Is this use of reinterpret_cast on differently-qualified struct members safe?

Are enums as bitfields implementation-defined types?

c language-lawyer c99

Difference between default (user-defined) constructor and constructor with default arguments?

Why do std::stof, std::stod, and std::stold handle errors with exceptions?

What are these evaluations in the calling function that are not specifically sequenced before the body of the called function?

c++ language-lawyer c++14

constexpr template argument weirdness

Can I use memcpy to write to multiple adjacent Standard Layout sub-objects?

c++ language-lawyer memcpy

What was the purpose of the emboldened text below in [class.copy]/12 in C++14?

c++ c++14 language-lawyer

Cast unsigned to signed and back

c++ language-lawyer

Why is declaration-seq in the C++ standard written this way?

Is an int variable an object, according to the C++ Standard?

c++ language-lawyer

Unqualified name lookup: Why local declaration hides declaration from using directive

When is the compiler allowed to optimize out the copy-constructor [duplicate]

Using declaration as overrider

Lifetime of a std::initializer list global/static object

Does C++ guarantees it is safe to access adjacent elements of an array from two threads