Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

call function when leaving scope

c++ c++11 scope raii

Do global reference capturing lambdas in C++ inhibit alias optimisations?

C++ 11 User Defined Literals with Microsoft Visual Studio 2013

Why an opaque-enum-declaration is not a definition?

c++ c++11 language-lawyer

Parameter pack expansion fails

C++11 difference between <thread> get_id() and native_handle()

multithreading c++11

Is this a good reason for non-polymorphic inheritance?

c++ inheritance c++11

Templated function specialization: linker error

How to initialize a pointer using an object with 0 value [duplicate]

c++ c++11 constexpr

C++ std lib <mutex>, <conditional_variable> libs and shared memory

c++ multithreading c++11

are there center-allocation deque or vector in STL implementations?

c++ c++11 vector stl deque

Custom literal works with long double but not double, and with pass by value but not pass by reference

C++ Eigen Sparse Matrix multiplication much slower than python scipy.sparse

c++ c++11 eigen

Why do we need second std::forward specialization?

specialize std::hash<T> for dependent types

c++ templates c++11 hash stdhash

What does C++ 'final' method annotation promise about the class design?

c++ oop c++11

move shared_ptr on constructor initialization list

Error while declaring a class with std::vector of structs containing std::unique_ptr

c++ c++11 vector unique-ptr

Implementing insert() on a container with move semantics when rvalue does not implement move

c++ c++11 containers move

Is there a reason to use const_cast on a string literal in this code?