Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is decltype of a non-static member function ill-formed?

Constexpr constructor fails to satisfy the requirements, but still constexpr. Why?

c++ language-lawyer c++17

Do data member addresses lie between (this) and (this+1)?

c++ language-lawyer

Moving local variable into return value of different type

c++ language-lawyer move

Why does default constructor of std::atomic not default initialize the underlying stored value?

limits and uses of C++20 template lambas

Does size_t have the same size and alignment as ptrdiff_t?

Can I clone the bytes of a C++ object, overwrite the original bytes, then copy those bytes back?

c++ language-lawyer

How does a converting constructor with more than a single non-optional parameter look like and why does it make sense?

The Standard seems to support (the snippet below compiles) a static data member having the same type as the class itself [duplicate]

Meaning of valid pointer

c++ language-lawyer

Why implicit conversion of bool to string isn't an error?

What is the zero-length array mentioned in the draft standard?

c++ arrays language-lawyer

Is GCC correct in requiring the constexpr specifier for this reference declaration?

Will template parameter deduction for constructors available since C++17 allow explicitly specify some of the class template arguments?

Is Rust's lexical grammar regular, context-free or context-sensitive?

Why is it impossible to explicitly default a copy constructor with volatile argument?

Is it safe to memcpy to a dynamic storage struct?

Why does this template argument deduction/overload resolution fail?

how to understand volatile example in Java Language Specification?