Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is this (enum : char {}) a gcc bug?

c++ gcc c++11 enums

Mixing pass-by-reference and pass-by-value to variadic template function valid?

How to refer current class using decltype in C++11?

General guidelines for defining lambdas [closed]

c++ c++11 lambda

Explicit passing "this" parameter to method call

c++ c++11 std

specializing std::swap for rvalues

c++ c++11

Custom exception hierarchy. Dreaded diamond from std::exception and std::bad_alloc

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