Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Multiple Default Constructors

Is clamping on iterators valid

With std::optional, what does it mean to "remove the move constructor from overload resolution"?

How to interpret the "point of declaration" for "const int i=2; { int i[i]; }" - an example from the C++ standard?

c++ c++11 language-lawyer

MSVC error when using capture-less lambda expressions as second and third operand of conditional operator

Relational operators evaluation result

Can a variable be used while being declared?

Where is the proposal on "structural binding"?

Is printf()'s string width safe with unterminated strings?

Why use "[*]" instead of "[]" in function prototype?

c arrays language-lawyer c99

Best way to specialise operator<< for std::ostream and std::vector with generic template functions?

c++ destructor return type

Will unique values in uint64_t also be unique in int64_t

c++ c++11 language-lawyer

Overloads of std::isnan and std::isinf for integral types

c++ c++11 language-lawyer

Which of these new expressions with char arrays are well-formed?

Class type non-type template parameter initialization does not compile

c++ gcc language-lawyer c++20

Make interchangeable class types via pointer casting only, without having to allocate any new objects?

Why can't I access static methods of an interface using an instance variable

java language-lawyer

Does struct assignment guarantee padding to also be equal

c struct language-lawyer

Why is a double convertible to a const-reference of seemingly any primitive?