Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Can calloc() allocate more than SIZE_MAX in total?

c language-lawyer

Why does the C++ linker allow undefined functions?

Is it legal for a pointer to point to a C++ register?

Return value of placement new

c++ c++14 language-lawyer

Why is std::streamsize defined as signed rather than unsigned?

Crash with icc: can the compiler invent writes where none existed in the abstract machine?

int a=1, is a || 1 a constant expression?

Is writing to &str[0] buffer (of a std:string) well-defined behaviour in C++11?

Is a class with deleted copy-constructor trivially copyable?

c++ language-lawyer

About binding a const reference to a sub-object of a temporary

c++ language-lawyer

What does std::includes actually do?

The validity of lambda expression with omitted parameter list in C++23

Enhanced for loop compiling fine for JDK 8 but not 7

Why doesn't an if constexpr make this core constant expression error disappear?

What's the difference between "auto x = vector<int>()" and "vector<int> x"?

Why is the std::initializer_list constructor preferred when using a braced initializer list?

Aliasing struct and array the C++ way

std::is_constructible on incomplete types

c++ c++11 language-lawyer

Is the strict aliasing rule incorrectly specified?

Are these compatible function types in C?