Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

How do c++ compilers find an extern variable?

c++ language-lawyer c++17

Unsequenced value computations (a.k.a sequence points)

Does this code violate the strict aliasing rule?

error: no viable overloading with clang, compiles with gcc

Implicitly capture const variable in a template lambda with no capture-default specified

Pedantic: What Is A Source File? What Is A Header?

c++ language-lawyer

Can an XOR linked list be implemented in C++ without causing undefined behavior?

Lambda expression with empty capture

In a function call, what is the operator, and what are the operands?

C++ standard proposal code: what are N and P?

c++ language-lawyer iso

std::tuple and standard layout

c++ c++11 language-lawyer

Creating an object of a class in its own static initializer

java static language-lawyer

Can a destructor call a non-const function on a const object?

Is scanf("%d%d", &x, &x) well defined?

c language-lawyer restrict

why `S x({})` invoke default constructor in GCC 7/C++1z mode only?

c++ gcc language-lawyer c++17

c++17 evaluation order with operator overloading functions

Is inheritability of lambdas guaranteed by the standard?

Why can't argument be forwarded inside lambda without mutable?

inline constexpr function definition legal or not? gcc (ok) vs clang (error)

Constructor initializer list is not calling copy constructor [duplicate]