Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to avoid specializing iterator_traits for each possible instantiation of a templated iterator?

Why is ref & cref needed for reference arguments to a function passed to std::thread?

c++ c++11

C++ multiple inheritance from base classes with members with same name

How is `>>>` lexed in C++0x?

c++ c++11

C++ standard wording: Does "through all iterators in the range" imply sequentiality?

c++ c++11 standards std

Can a parameter pack be captured implicitly within C++11 lambdas?

How can I compile under C++11 standard in Ubuntu? [closed]

c++ gcc ubuntu c++11 llvm

When is it a good idea to use std::promise over the other std::thread mechanisms?

c++ c++11 stdthread

Is it possible to move a boost::optional?

Getting the size of member variable

c++ c++11

C++ Alias for list of template parameters

c++ c++11 templates using

Is it possible to pass a brace-enclosed initializer as a macro parameter?

Why standard doesn't require std::mutex::~mutex synchronizes-with with the latest unlock

c++ c++11 mutex

Has C++11 changed requirements for elements of STL containers, and how?

c++ stl c++11

std::unordered_map::emplace behavior with no move/copy constructor

Can Different Lambdas Decay to the Same Function Pointer?

Couldn't deduce template paramter even if it is known at compile time

Assign a dynamically allocated array in a constructor to a unique smart pointer member variable

c++ c++11 smart-pointers

Move assignment operator not being called

c++ c++11 move

C++11: does unordered_map/set guarantees traversing order as insert order?

c++ c++11 insert unordered-map