Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Allowed characters as macro parameters in C

c macros language-lawyer

Is it defined behavior to explicitly call a destructor and then use placement new to reconstruct it?

Why is using an identifier not in scope UB and not an error

new A[0]: Initialization of zero-size array with dynamic storage duration for a class with inaccessible constructor

Are there any difference in empty parentheses (“T()”) and empty braces (“T{}”) when used as initializers?

Conversion operator with const-result - GCC/Clang discrepancy

c++ language-lawyer

Constexpr call from within another constexpr

Can the C++ compiler coalesce adjacent mutex locks?

Is unsigned int a `simple-type-specifier`

c++ types language-lawyer

Is it okay to mix in storage and type qualifiers anywhere inside multi-word C-type?

c syntax language-lawyer

Is the semicolon really a sequence point in C?

Why is std::priority_queue::emplace logarithmic?

Why does std::is_invocable_r reject functions returning non-moveable types?

Clarification of the effective type restriction in C

Why does a better standard conversion sequence followed by a user-defined conversion not make an overload better?

What operations trigger end of lifetime of objects at a given location?

c++ only: unary minus for 0x80000000

Why std::move sometimes works without a namespace prefix "std::" [duplicate]

Why it is valid to intertwine switch/for/if statements in C/C++? [duplicate]

c++ c language-lawyer