Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

reference collapsing for local variables

Compile error when calling a move overloaded function with an implicitly convertible object

How to inspect the types of a function's parameters?

std::atomic treat a pair of atomic int32 as one atomic int64?

c++ c++11 lock-free

Is it possible to avoid copying lambda functor in this situation?

c++ lambda c++11 finally

rvalue-reference to array: can it actually happen?

Does an empty value pack expansion match a type pack or optional type parameter?

How can I call a set of variadic base class constructors based on tagged argument packs?

Move string into vector

c++ string vector c++11

How can one make a variadic-based chained-indexing function?

c++ arrays c++11

SFINAE - Trying to determine if template type has member function with 'variable' return type

std::packaged_task compile error w/ gcc 4.6

c++ concurrency c++11 g++ std

Static assert to check static const class data members?

c++ class c++11 static-assert

Multiple scripts in a single Lua state and working with _ENV

How to enable experimental C++11 concurrency features in MinGW?

c++ gcc concurrency c++11 mingw

Explicitly use defaults for some parameters in class template instantiation

c++ templates c++11 default

Is there a difference between int x{}; and int x = 0;?

c++ c++11 initialization

What's the standard/official name for universal references?

C++11: How to set seed using <random>

c++11 random

Range-based for with brace-initializer over non-const values?

c++ c++11 initializer-list