Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Do mutexes guarantee ordering of acquisition?

multithreading c++11

OpenMP vs C++11 threads

c++ multithreading c++11

Explicit move constructor?

How to pass const pointer to const object using unique_ptr

c++ c++11 unique-ptr

When are implicit move constructors not good enough?

c++ c++11 move-semantics

What are the advantages of using uniform_int_distribution vs a modulus operation?

c++ c++11 random stl

boost::thread_group in C++11?

c++ boost c++11 boost-thread

Can a lambda capturing nothing access global variables?

Why is std::list bigger on c++11?

c++ gcc c++11 c++98

Inserting a variadic argument list into a vector?

Inserting into an unordered_set with custom hash function

c++ c++11 unordered-set

C++11 type trait to differentiate between enum class and regular enum

Move Constructors and Static Arrays

Is it definitely illegal to refer to a reserved name?

Does it make sense to add final keyword to the virtual function in a class that has no base class (is not derived)

how to initialize a constexpr reference

c++ c++11 reference constexpr

jstring(JNI) to std::string(c++) with utf8 characters

Why is my defaulted move constructor not noexcept?

GCC error: cannot convert 'const shared_ptr<...>' to 'bool' in return

c++ gcc c++11

Correctly implement finally block using C++ lambda

c++ c++11 finally