Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ return a std::string &

What happened to std::atomic<X>::value_type?

c++ c++11 gcc clang

Construct unordered_map with a value_type of unique_ptr

why does nullptr not require header while nullptr_t does

c++ c++11

Placement new breaks consts and references?

Is putting std::move inside a lambda really necessary here?

c++ c++11

Is this approach of barriers right?

c++ c multithreading c++11

Are there any situations where code would have a sequence point in c++11 but not c++03?

c++ c++11 sequence-points

Checking for C++11 library features

How to figure out the smallest integral type that can represent a number, in compile time

c++ templates c++11 typetraits

Is a compiler forced to reject invalid constexpr?

C++11 Calling Register Function on Link?

c++ c++11

prevent array decay in parameter pack expansion

c++ templates c++11

How to capture "this" in a lambda function in lambda? [duplicate]

c++ c++11 lambda

what's the // @include in c++ comments

c++ c++11

C++11: pass (lambda or other) function object by reference or value?

c++ c++11 reference lambda

forward declare a template alias

c++ templates c++11 typedef

l-value specifies const object while using std::map

c++ visual-c++ c++11 stl

Conditional operator type conversion in VS 2012

What should the default constructor do in a RAII class with move semantics?

c++ c++11 move-semantics raii