Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why does make_unique have an extra move with a constructor that can take std::bind as an argument?

c++ c++11 c++14

using alias for static member functions?

c++ c++11 c++14

unique_ptr, custom deleter, and Rule of Zero

c++ c++11 rule-of-zero

A more efficient way than function reference?

Variadic template recursive return type deduction compilation error

Static constexpr members of same type as class defined (additional details)

std::initializer_list type deduction

C++: std::vector - It is possible to "slice" a vector?

Memory footprint of unique_ptr [duplicate]

c++ c++11 unique-ptr

strange typename usage c++11

c++ c++11

How remove_reference disable template argument deductions?

Use SFINAE to detect the existence of a templated member function

c++ templates c++11 sfinae

error: base class 'A1' has private copy constructor

Is it possible to define type alias to constexpr function

c++ c++11 constexpr type-alias

const arguments in std::remove_if

c++ list c++11 lambda stl

Inherited constructors, default constructor and visibility

Using CRTP with an interface

I just can not understand DR 712

Does std::vector::emplace() really offer the strong exception guarantee in the face of a throwing move constructor/assignment operator?

c++ c++11 vector libstdc++

std::promise external code, async cancellation

c++ c++11 asynchronous