Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ destructor with return

Cannot create constexpr std::vector

c++ c++11

Bit count : preprocessor magic vs modern C++

If nullptr_t isn't a keyword, why are char16_t and char32_t?

c++ c++11

Why are by-value parameters excluded from NRVO?

Why is there no piecewise tuple construction?

c++ c++11 tuples piecewise

What could go wrong if copy-list-initialization allowed explicit constructors?

Why does the standard differentiate between direct-list-initialization and copy-list-initialization?

Significance of parentheses in decltype((c))?

c++ c++11 decltype

Passing any function as template parameter

C++'s most vexing parse again [duplicate]

c++ c++11 gotw

why is the destructor call after the std::move necessary?

Are function-local static mutexes thread-safe?

c++ c++11

Why are two raw pointers to the managed object needed in std::shared_ptr implementation?

c++ pointers c++11 shared-ptr

Alias template specialisation

c++ templates c++11

Documenting enum values with doxygen

c++ c++11 enums doxygen

How do I erase elements from STL containers?

c++ c++11 stl std

Isn't the template argument (the signature) of std::function part of its type?

c++ c++11 std-function

Is std::vector<T> a `user-defined type`?

C++11 std::function slower than virtual calls?

c++ performance c++11