Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ 11 How to get enum class value by int value?

c++11 enums

Fast hash function for `std::vector`

c++ c++11 vector hash

Use of Union with reference

Store timestamps in nanoseconds c++

c++ c++11 time chrono

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?