Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is std::map allowed to re-balance after read-only operations (like a Splay tree)

c++ c++11 splay-tree

boost::python and set::erase -> weird behaviour

C++11 copy assignment for std::complex in g++ 4.5 - no match for 'operator+'

Estimating time left in C++11

c++ algorithm c++11

type-safe variadic functions with parameters of same type

c++ templates c++11

decltype for member functions

c++ c++11 decltype

Does std::function's copy-constructor require the template type's argument types to be complete types?

c++ boost c++11 tr1

How does one use enable_if for mutually exclusive non-member function templates?

c++ templates c++11 sfinae

How to make a shared_lock or upgrade_lock in standard C++11?

Should we store smart pointers to class instances in large std::vector's for better performance?

Why can I std::move a stream rvalue ref into an lvalue ref?

Map function with c++11 constructs

is_lock_free not defined in std::atomic<T> in gcc 4.7.2?

c++ gcc c++11 atomic

Lvalue reference constructor is called instead of rvalue reference constructor

std::thread c++. More threads same data

Adding Functionality To An Object Without Changing The Interface

c++ design-patterns c++11

Null propagation operator in C++

c++ templates c++11

Is there a packaged_task::set_exception equivalent?

captured variable hides passed variable in lambda. how to unhide?

c++ c++11

Are typelists completely replaced by variadic templates?