Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Selectively suppress "unused variable" warnings for unused lambdas

Compiling C++11 sources for Android NDK

android c++ c++11 android-ndk

Thread joining issue

Should I write iterators for a class that is just a wrapper of a vector?

c++ c++11

std::async not executing when specifying launch::async

According to the standard, is std::vector affected by the static initialization order problems?

c++ c++11 language-lawyer

Is there a better way in C++11 to construct classes on the stack

What is meant by an attribute of a function?

c++ c++11 noreturn

How to implement a c++11 move function for a user-defined class?

c++ c++11 move move-semantics

Where in the standard (C++11) is it said that the remainder operator works for integral type only?

c++ c++11 language-lawyer

What happens when you move to not an rvalue reference?

c++ c++11

Emplace a pointer to a multimap of shared_ptr's doesn't work

Function pointers: is the simple canonical use bad from a performance point of view? If so what are the c++11-ish alternatives?

c++ c++11

Slow thread creation on Windows

C++ Pass any container to function

c++ c++11 stl

Implementing move constructor

c++ c++11 move lvalue rvalue

Why is this move allowed?

c++ c++11 move

std::make_pair, c++11 and explicit template parameters [duplicate]

c++ c++11 c++03

For loops vs standard library algorithms with a relatively old compiler

c++ algorithm c++11

Calling a stateless lambda without an instance (only type)