Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ constexpr keyword placement

c++ c++11 constexpr

Filling a vector with multiple threads

c++ multithreading c++11

Rvalue reference and auto&& local variables

c++ c++11

How to check if a class has a default constructor, either public, protected or private

c++ c++11 c++14

Should copy assignment operator pass by const reference or by value?

SFINAE to have a class member only if possible

c++ c++11 templates sfinae

Test floating point std::vector with C++ Catch

How to display Vietnamese characters in C++?

c++ c++11 locale

How do I reliably detect support for nullptr?

c++ c++11

Templates, Function Pointers and C++0x

When should I choose copy elision over passing argument by const reference? [duplicate]

c++ c++11 lvalue rvalue rvo

C++11: Nontrivial Thread Local Static Variable?

std::future still deferred when using std::packaged_task (VS11)

C++11 compiler error when using decltype(var) followed by internal type of "var"

How to make initializer list and class member initializer work together?

c++ c++11

Brace initialization for class with virtual function

c++ c++11

Why can an unnamed struct not be used as a trailing return type?

Casting a variadic parameter pack to (void)

evaluation order initialization array in c++

Why will two-phase lookup fail to choose overloaded version of 'swap'?