Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Should functions declared with `= default` only go in the header file

c++ c++11

Does C++11 provide hashing functions for std::type_info?

What is "= delete"?

c++ c++11 deleted-functions

Can the main (or entry-point) function be implemented as a lambda?

When should I use remove_reference and add_reference?

c++ c++11

Why do not C++11's move constructor/assignment operator act as expected

Extract just the argument type list from decltype(someFunction)

terminate called after throwing an instance of 'std::out_of_range'

c++ c++11

"Refresh" a lambda object

c++ c++11 lambda

Can't compile C++11 source using GCC 5.1 toolchain

c++ c++11 gcc5

Is move semantics in C++ something C is missing?

c++ c c++11 move

Why is the move constructor involved here

How to resolve conflict between boost::shared_ptr and using std::shared_ptr?

c++ boost c++11

rvalue binding confusion in C++

Using c++11 lambda as accessor function in boost::python's add_property (get_signature fails with lambda)

c++ c++11 lambda boost-python

Is it possible to choose between constructors in main without writing a copy-constructor?

Stable memory addresses using a std container (like vector, list, queue, ...) [duplicate]

c++ pointers c++11 vector

C#-Like Delegates in C++

c# c++ c++11

Am I able to use C++11 in QNX?

c++ c++11 qnx

How can I sort a vector of unique_ptr?