Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

how to implement a seqlock lock using c++11 atomic library

C++ copy_if lambda capturing std::string

c++ c++11 lambda

Visual C++11 stack allocator for std::list and std::map

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

c++ c++11

About thread-safety of weak_ptr

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

Can array members be initialized self-referentially?

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