Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++0x: rvalue reference versus non-const lvalue

Should I stop using abstract base classes/interfaces and instead use boost::function/std::function?

c++ stl c++11 design-patterns

How do I get back c++0x/c++11 support for Mac OS X 10.6 deployment using Xcode 4.6.2 thru 7.1.1

std::bind()-ing a base protected member function from a derived class's member function

How can a std::reference_wrapper to a rvalue lambda work?

c++ c++11 lambda

Optimal way to access std::tuple element in runtime by index

"type-switch" construct in C++11

How to create a variadic template function with `std::function` as a function parameter?

enable_shared_from_this not working on xcode 5

c++ xcode c++11 clang llvm

why C++ operator overloading requires "having at least one parameter of class type"?

C++ operator overload performance issue

typeid(complex<double>(0.0,1.0)) != typeid(1.0i)

Looking for a constexpr ceil function

c++ c++11 visual-c++ constexpr

Observing weird behavior with 'auto' and std::minmax

c++ c++11 auto boost-polygon

How to ensure a specific class only can create an instance of another class?

c++ c++11

Using variable number of float arguments

Why does std::condition_variable as a class member cause compile errors with std::thread?

Difference between std::resize(n) and std::shrink_to_fit in C++?

std::make_shared, std::unique_ptr and move constructors

c++ stl c++11 clang

Non-obvious lifetime issue with std::promise and std::future

c++ c++11 promise stdthread