Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 regex_token_iterator

c++ regex c++11 copy

Initialzing and accessing members of a variadic class template

Making sure copy constructor is never called when move constructor exists

Stepping through the code is stopping on STL code when debugging c++ with Xcode 4.5

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

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

c++11 interprocess atomics and mutexes

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

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

c++ c++11 templates auto