Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why is there no to_string(const string&)?

c++ c++11

What's the right behavior when auto meets polymorphism and virtual function?

c++ c++11 auto

Invoke base class function as derived

c++ c++11

Does C++11 force move unconditionally?

c++ c++11 gcc

Initialize unordered_map in the initializer list

why std::lock() supports deallock avoidence but std::try_lock() does not?

c++ c++11

Initialize a class with an array

Why in C++11 or C++14 does the compiler implicitly delete the copy constructor when I declare a move assignment operator?

How do I compile variadic templates conditionally?

c++ templates c++11 variadic

C++ <map> vs <unordered_map> vs <tr1/unordered_map> vs <ext/unordered_map>

c++ c++11 tr1 unordered-map

Mixing partial template specialization and default template parameters

How do I allow move construction and disallow assignment and copy construction of a class

Arrays and Rvalues (as parameters)

Is int main(int, char const* const*) well formed?

c++ c++11

Move semantics and const references

c++ c++11

Function objects in C++ (C++11)

C++11 string initialization

c++ string c++11

segmentation fault when moving std::vector [closed]

c++ c++11 g++ move-semantics

How to use C++11 thread with instance method? [duplicate]

c++ c++11

Deduce template argument when lambda passed in as a parameter

c++ c++11 lambda