Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Why std::is_constructible stops at immediate context?

templated codes works fine under G++ but error under VC++

c++ language-lawyer

What is the exact meaning of the statement "The expression e is used as a glvalue if and only if the initialization uses it as a glvalue" in [conv]/6

Can a standards-conforming string be longer than SIZE_MAX characters?

c string language-lawyer c11

When defining a prototype of an overloaded C++ function template, is it legal to use its name to refer to previous definitions?

c++ c++11 language-lawyer

Is this a portable way to do tagged pointers in C?

Should template variable C-array full specialization specify array size?

Does standard mandates that stream-constructors don't access stream buffer?

c++ c++11 language-lawyer

Is the instantiation be performed for the type that participate in partial ordering

Function pointer cast on function with inherited C structure

c language-lawyer

Why do inline elements behave like block level elements when floated?

How to handle or avoid exceptions from C++11 <regex> matching functions (§28.11)?

Segmentation fault for lambda function in non-static data member initializer

c++ c++11 gcc language-lawyer

Is (int *)0 a null pointer?

Would it be legal for std::set to be specialized for (u)int8 and chars using bitset and shared static array

const T{}; works, const T; fails when T is a non-POD,