Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Reducing template complexity in C++

Is it possible to do the following with auto in C++0x?

c++ class c++11 type-inference

C++ Lambdas, Capturing, Smart Ptrs, and the Stack: Why Does this Work?

What are the consequences of ignoring narrowing conversions in C++0x

c++ g++ c++11 narrowing

SFINAE differentiation between signed and unsigned

c++ templates c++11 sfinae

Is an xvalue's lifetime extended when it is bound to a const lvalue reference?

c++11 optimal parameter passing

Clang, std::shared_ptr and std::less/operator<

c++ c++11 clang

Implementing boost::optional in c++11

c++ c++11 maybe boost-optional

c++ version supported by cuda 5.0

c++ c++11 cuda

Should the moved-from object be left in a "safe" state? [duplicate]

c++ c++11 move-semantics

Force a specific overload when template template

Partitioning/batch/chunk a container into equal sized pieces using std algorithms

c++ boost stl c++11

Moving elements out of an associative container

Return type deduction with multi-statement lambdas

Why is std::packaged_task<void()> not valid?

c++ c++11 packaged-task

What is a C++11 random distribution made of?

c++ random c++11

C++11 ambiguity between declarator and abstract-declarator in parameter clause?

c++ c++11 most-vexing-parse

Non local lambda and capturing variables - what does "block scope" means

c++ c++11 lambda

Why does std::atomic's compare_exchange take a reference for the expected value?

c++ c++11 atomic