Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to emulate 'const auto' with BOOST_AUTO in C++?

c++ c++11 boost

Complexity of std::unordered_multiset insert

std::unordered_map::emplace object creation

Recursive noexcept specification

c++ c++11 c++14 noexcept

Passing template function pointer to template as template parameter is too verbose

std::rotate return value in gcc 4.9

algorithm gcc c++11 gcc4.9

C++11 compile time format string literal construction for invoking printf

How to swap two parameters of a variadic template at compile time?

aliasing a variadic template function

C++11 Kill threads when main() returns?

c++ multithreading c++11

How to use SFINAE to restrict overload to input iterators

c++ templates c++11

Split parameter pack in 0 ... N-1 and Nth element

c++11 variadic-templates

Passing a vector of unique_ptr to an object. the vector becomes a member variable. correct approach?

c++ oop c++11

What is dominance in the context of virtual functions?

Is there a way to prevent a move constructor followed by a move assignment operator when copy elison fails?

c++ c++11 c++14

C++ redefinition of variable, global namespace polluted and I don't know why

Overload resolution with rvalue reference to const char *

c++ c++11 lvalue rvalue

Where does nullptr_t reside?

c++ c++11 std nullptr

Memory ordering behavior of std::atomic::load

c++ c++11 atomic memory-fences

explicit copy constructor compile error

c++ c++11 constructor