Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why did C++11 make std::string::data() add a null terminating character?

c++ string c++11 stdstring c++03

How are you using C++11 today? [closed]

I want to kill a std::thread using its thread object? [duplicate]

Volatile in C++11

c++ c++11 volatile

How to directly bind a member function to an std::function in Visual Studio 11?

What does it mean for an object to exist in C++?

Is std::swap(x, x) guaranteed to leave x unchanged?

c++ c++11 swap

Why does this code compile with gcc but not with clang

c++ c++11 g++ clang++

Must template argument functions be treated as potentially constexpr?

Lock-free Reference counting and C++ smart pointers

Traversing a tree during compile time, with visiting actions

c++ templates c++11

Dependent type or argument in decltype in function definition fails to compile when declared without decltype

Does extern template prevent inlining of functions?

c++ templates c++11

Quick sort at compilation time using C++11 variadic templates

Lowest common ancestor in a linear lineage of types

Overload resolution and arrays: which function should be called?

C++ Nifty Counter idiom; why?

"Default member initializer needed within definition of enclosing class outside of member functions" - is my code ill-formed?

c++ c++11 language-lawyer

Difference between boost::shared_ptr and std::shared_ptr from the standard <memory> file

c++ boost c++11

passing lambda as argument - by reference or value?

c++ function c++11 lambda c++14