Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 std::function slower than virtual calls?

c++ performance c++11

May a destructor be final?

How do I implement convenient logging without a Singleton?

c++ singleton c++11

C++ STL map: is access time O(1)?

c++ data-structures c++11 std

How to use std::async on a member function?

c++ multithreading c++11 std

What's the C++ 11 way to fire off an asynchronous task and forget about it?

c++ multithreading c++11

When is it safe to call this-> in constructor and destructor

Does std::sort check if a vector is already sorted?

c++ sorting gcc c++11 stl

Why could const member be initialized twice?

C++11 Tagged Tuple

c++ c++11 tuples

use of constexpr in header file

c++ c++11 constexpr

How to reverse the order of arguments of a variadic template function?

Can I easily iterate over the values of a map using a range-based for loop?

How to set the stacksize with C++11 std::thread

Why push_back is slower than operator[] for a previously allocated vector

c++ c++11 vector stl

static_assert fails compilation even though template function is called nowhere

templated typedef?

c++ templates c++11 typedef

Why does one still need to disambiguate a dependent type with typename in the RHS of a using statement?

c++ c++11 language-lawyer

Why does alias template give a conflicting declaration?

std::unordered_map insert with hint

c++ stl c++11