Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Must constexpr expressions be captured by a lambda in C++?

What is the best way to parse a millisecond date time in C++11

c++ c++11 c++14

Almost Always decltype(auto)?

c++ auto c++14 decltype

Is assert usable in constant expressions?

Why is a template with deduced return type not overloadable with other versions of it?

overload resolution of template function with auto

What makes a union member active?

`decltype` of generalized lambda capture inside body of a lambda - gcc vs clang

What is "a value not associated with an object"?

What does it mean to take the address of an rvalue reference?

c++ c++11 c++14

A failure to instantiate function templates due to universal (forward) reference to a templated type

May I declare a member type alias to a type in a surrounding scope, using the same name?

c++ g++ c++14 clang++ type-alias

Double brace initialization

What is the proper usage of a constexpr standard functor?

The member function Outer::f() is not a friend of class Outer::Inner. Why?

Why isn't the operator[] of a std::array temporary constexpr?

Why must the delimiters of raw string literals be under 16 chars?

std::vector<uint8_t> manually copying instead of calling memcpy when C++11/14 enabled

c++ c++11 gcc c++14 stdvector

Why to use std::move despite the parameter is an r-value reference

c++ c++11 c++14 move stdmove

std::errc, how to indicate success in retval

c++ c++14