Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Passing an element to a lambda by reference-to-const

Default case compilation when switching over all items of an enum class

c++ c++11 enums

Calling a member function pointer on a smart pointer

STL containers' range insert functions returning void under c++11?

c++ c++11 g++ mingw std

Why was the std::pair class standard changed to disallow types with only a nonconstant copy constructor in C++11?

multiple functions with same name but different argument types as template parameter

c++ c++11

Disadvantages of increasing Stack Size and difference between Stack Commit and Reserve

c++ performance c++11 stack

Invalid use of incomplete type in android ndk using c++11 std::async

C++ varargs - Is how I am using them okay or are they bad? Is there a good alternative?

C++: forward declaring a type def

Why does thread.join fail when called in destructor of global variable

atomic operation with volatile atomic variable

c++ c++11 atomic

Function pointer call when signature is given only at runtime

c++ c++11 function-pointers

Compiler flags for C++11

c++11 cmake

Why constexpr data members are not implicitly static?

Why can't std::function bind to C-style variadic functions?

c++ c++11

Is a = 0; b = (a++, a + 1) ; undefined behavior (UB)?

About thread-safety of weak_ptr

is there a way to pass nested initializer lists in C++11 to construct a 2D matrix?

What is the difference between "std::string const &s" and "const std::string &s"?