Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Objects on the heap and references

c++ language-lawyer

What's a C++03 compliant way of fetching a value from a volatile variable?

c++ language-lawyer

Is my interpretation correct about n3797 8.5.3/5?

Why an opaque-enum-declaration is not a definition?

c++ c++11 language-lawyer

Is usual unqualified lookup for the function name differs from lookup for variable name?

Why may there be a difference between union* and struct*?

Return value of istream::get()

c++ language-lawyer

Can unsigned integer incrementation lead to undefined defined behavior?

Why is [static N] not enforced at compile-time?

c arrays language-lawyer c99

How will this variable be initialized?

c++ language-lawyer

C++ Templates with pointer to member function by signature and type

Undefined behavior on reading object using non-character type when last written using character type

Does *&++i cause undefined behaviour in C++03?

Do dynamic libraries break C++ standard?

Can an out-of-range enum conversion produce a value outside the underlying type?

c++ language-lawyer c++14

Can `throw` be inside a comma subexpression within C++ conditional (ternary) operator?

Properties of a pointer to a zero length array

c++ language-lawyer

Why `void* = 0` and `void* = nullptr` makes the difference?

Can I Reference Previous Members of an Initializer List?

Why is it ill-formed to have multi-line constexpr functions?

c++ c++11 language-lawyer