Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Unqualified lookup in C++

Why lambda expression's capture list cannot be decomposed using structured bindings

Does array subscription count as taking address of object?

c arrays language-lawyer

C++ Default constructors in union with variant member with non-trivial default constructor

What exactly is invalidation of reference/pointer?

Does access through pointer change strict aliasing semantics?

Unmentioned errors in POSIX

c posix language-lawyer

About aligned storage and trivially copyable/destructible types

Can a type which is a union member alias that union?

Is signed overflow still undefined behaviour in gcc when -fwrapv is used?

c gcc language-lawyer

C++ Union Member Access And Undefined Behaviour

Why stringizing operator is only accepted as a macro?

Can a function be defined in global namespace if it is declared in an anonymous namespace?

Can a load or store be reordered before a conditional?

What is the difference between equality-preserving and stable?

What does "possibly-hypothetical" mean in the pointer arithmetic rules?

Is it safe to copy the bytes of an object out to an array and back again

c++ language-lawyer

Where are exceptions thrown when arguments are passed by value [duplicate]

Why does 'typeid(x) == typeid(y)' evaluate to true, where 'x' and 'y' are id-expression of type T and T& respectively?

Holding or passing around non-addressable-functions since C++20 [duplicate]