Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why can non-capturing lambdas not be default-constructed, and is it possible to work around this?

c++ templates c++11 lambda

Using static functions of a base class without specifying parameters to avoid ambiguity

c++ c++11 class-template

How to resolve ambiguous overloaded function call?

c++ c++11 g++ overloading

Two different results on GCC 4.6 and 4.7 for template template deduction

Getting appropriate storage value type?

c++ c++11

How to correctly exit a std::thread that might be waiting on a std::condition_variable?

How to make std::regex begin matching at a specific position in a string?

c++ regex c++11

Passing an element to a lambda by reference-to-const

Default case compilation when switching over all items of an enum class

c++ c++11 enums

Calling a member function pointer on a smart pointer

STL containers' range insert functions returning void under c++11?

c++ c++11 g++ mingw std

Why was the std::pair class standard changed to disallow types with only a nonconstant copy constructor in C++11?

Why constexpr data members are not implicitly static?

Mutex lock speed difference inside and outisde the foor loop

Incomplete type is not allowed in a class, but is allowed in a class template

Why is a unique_ptr not freed after a constructor calls an exception?

c++ c++11 c++14

Is a = 0; b = (a++, a + 1) ; undefined behavior (UB)?

About thread-safety of weak_ptr

Using C++11 auto keyword to declare two (or more) variables

c++ c++11 templates auto

What is the difference between "std::string const &s" and "const std::string &s"?