Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

The issue about the deferred dynamic initialization

c++ language-lawyer

Does removing const from a pointer-to-const obey strict aliasing in C, and refer to the same object?

Requires clause with pure abstract class type parameter?

Can a method be referenced using a child class name in C++?

c++ language-lawyer

Does C++11 allow (not require) release/acquire semantics for volatile keyword

Should initialization by conversion function be ambiguous when two candidates have the same cv-qualification?

Is it well-defined to cast xvalues to lvalues for passing to functions?

Template non-type arguments for reference type and odr-used

c++ boost language-lawyer

Documentation of "invalid pointer value" conversion in C++ implementations

Expanding parameter pack as part of lambda capture in fold expression - gcc vs clang [duplicate]

Explicitly defaulted copy ctor generates better code than hand written equivalent

c++ language-lawyer

Does overloading the comma operator *really* affect the order of evaluation of its operands?

What is a temporary object with static storage duration

c++ language-lawyer

Does the standard consider non-template members of template classes to be "templates" themselves?

c++ language-lawyer

Criteria for a variable to be usable in a constant expression

c++ language-lawyer

Why must 'auto' declarations all be of the same type?

c++ c++11 language-lawyer

Extending temporary's lifetime through rvalue data-member works with aggregate, but not with constructor, why?

Overload resolution with multiple functions and multiple conversion operators

Fixed-width integer literals in C++?

Can "T t = {};" and "T t{};" produce different results?