Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

std::is_same returns false when comparing std::tuple_element and decltype(std::get)

c++ c++14 decltype

Overloading type from parent namespace

c++ c++11 namespaces c++14

Is std::make_unique<T[]> required to return aligned memory?

c++ arrays c++14

What is the rationale for the difference in destruction behavior between std::unique_ptr and std::shared_ptr?

c++ c++14

What causes this constructor to delegate to itself when it takes an initializer list and delegates a vector?

c++ c++11 c++14

Constexpr compound assignment operator in clang and gcc

Variadic function calling a variadic macro

auto and brace initialization in C++11/C++14 [duplicate]

c++ c++11 gcc clang c++14

Error when checking if a tuple of references is default constructible

c++ c++11 std c++14 stdtuple

Are digit separators allowed before the digits in a hex or binary number?

c++ c++14 digit-separator

Lambda: A by-reference capture that could dangle

c++ c++11 lambda c++14

C++14 How often should I use constexpr?

c++ c++14 constexpr

constexpr - function cannot be used in a constant expression

c++ g++ c++14 constexpr cmath

No Global variable initialization

c++ g++ c++14

std::make_unique<T[]>(size) value-initialization

c++ c++11 c++14

explicit constructor of the wrong type called

c++ c++11 constructor c++14

Are local class rules aligned to c++14 return type deduction?

Why is templated constexpr with std::string allowed in gcc?

c++ gcc c++14 constexpr

Who is responsible for the shared state of futures and promises

c++ c++11 promise c++14 future

Why can't we implement both methods `getAB() &&` and `getAB()`? [duplicate]