Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Substitution failure with `std::function` and previously deduced template parameter - why?

implicit conversion from class to enumeration type in switch conditional

C++14 warning: too many template headers for variable (should be 0)

How is P0522R0 breaking code?

Will I be able to declare a constexpr lambda inside a template parameter?

Is the term "method" defined by the C++ Standard?

SFINAE on functions with default parameters - free function vs operator()

Reshaping a 1-d array to a multidimensional array

Does an expression with undefined behaviour that is never actually executed make a program erroneous?

What is the rationale to "no diagnostic required"?

c++ c++11 language-lawyer

Is it valid to "hide" a base class virtual function by making it pure virtual in derived classes?

c++ c++11 language-lawyer

Why this ADL case is working?

T v{} initialization

What exactly is a translation unit in C

c language-lawyer

Is the value of `this` pointer constant during the object's lifetime?

Is it legal to have multiple const qualifiers? [duplicate]

c++ language-lawyer

Why can I std::move elements from a const vector?

What is a "byte" in C / C++

Why are different conversion functions for int and const int allowed?

Pimpl - Why can make_unique be called on an incomplete type