Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

May a member function template specialization have a different access level than the main template?

c++ templates c++11

Constructing a non-copyable, non-movable type into a function parameter without invoking initializer_list constructor

c++ c++11 initializer-list

Is \0 ("\\0" in a C-style regex string) a valid escape sequence in C++ regular expressions?

Explicit template instantiation with variadic templates

Workaround for debug symbol error with auto member function?

c++ gcc c++11 clang c++14

When does a static constexpr class member need an out-of-class definition?

c++ c++11 plugins constexpr

Concurrent std::call_once calls

c++ c++11

Forcing inline with a single macro in GCC, Clang and Intel Compiler?

c++ c++11 gcc clang icc

Overload between rvalue reference and const lvalue reference in template

Expanding a lambda for each parameter of a parameter pack: Clang vs. GCC

Why is std::mutex twice as slow as CRITICAL_SECTION

Deducing the selected overloaded function type for given argument types

Guaranteed Detection of Temporary->Named Points

c++ c++11 move lazy-evaluation

C++11 move semantics and rvalue reference

C++11 unordered_set with std::owner_less-like hashing

Why decltype expressions in return types have to be mangled in the symbol name?

c++ c++11 gcc c++14

Type trait: Check if reference member variable is static or not

c++ c++11 reference typetraits

factory, unique_ptr and static_cast

c++ c++11

Why Visual C++ 2015 allows std::atomic assignment?

Why does this simple lambda consistently run faster inside an std::thread than inside the main function with gcc 4.9.2?