Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Can you access the object representation of any object through a char*?

Ambiguous overloads, implicit conversion and explicit constructors [duplicate]

Why does Clang prefer the primary template over the specialization from C++17?

Why is it legal to inappropriately access privates in an explicit instantiation?

Using std:vector as low level buffer

Trying to understand §3.3.1/4 [duplicate]

POD structs containing constant member

What is the correct result of decltype( (A{}.int_member) )?

Brace initialization of template struct

c++ gcc clang language-lawyer

Overload-Resolution: Is a direct conversion operator preferred (as a consequence of copy-elision)?

C++20 contracts and unused variables

c++ language-lawyer c++20

The point of destroying a temporary object when it created in a member-initializer

c++ gcc clang language-lawyer

Do unnamed bit-fields have well-defined semantics?

c language-lawyer c11

Is fgets() returning NULL with a short buffer compliant?

c language-lawyer fgets

Why are fopen arguments restrict qualified in the C Standard and <stdio.h> header file?

c language-lawyer libc

T* versus char* pointer arithmetic

Should decltype(foo(1)) instantiate the constexpr function template foo?

How can I avoid unexpected results from std::abs?

c++ language-lawyer

Is converting a reinterpret_cast'd derived class pointer to base class pointer undefined behavior?

c++ language-lawyer

Is typename T in call parameter allowed? [duplicate]