Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

zero value for all types?

c++ c++11 initialization zero

Access enum values in C++98 and C++11

c++ enums c++11 c++98

Template pattern matching

c++ templates c++11

How to interpret the "point of declaration" for "const int i=2; { int i[i]; }" - an example from the C++ standard?

c++ c++11 language-lawyer

Xcode 4.6 / Clang 4.2 can't find C++11 headers

c++ xcode c++11 clang std

Assigning a std::shared_ptr in assignment operators

c++ c++11

Applying set-theory to C++11 variadic templates

Measuring time results in return values of 0 or 0.001

c++ windows time c++11 chrono

unordered_map constructor error (equal_to templated function)

c++ c++11

In C++ a "class instance" is the only type of object?

c++ oop c++11

Passing r-value as non-const reference (VS warning C4239)

For std::tuple, how to get data by type, and how to get type by index?

c++11

Trailing return-type syntax fails with noexcept specifier?

c++ c++11

C++11 - can't awake a thread using std::thread and std::condition_variable

How can I let the compiler deduce the return type of a template?

c++ templates c++11

Type of a C++ string literal

std::move() as performance bottleneck?

C++ move semantics: why copy assignment operator=(&) is called instead of move assignment operator=(&&)?

How to prevent clients from passing a nullptr to a constructor?

Why does this simple thread code fail?

c++ multithreading c++11 stl