Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

C++11 regex_token_iterator

c++ regex c++11 copy

Multiple scripts in a single Lua state and working with _ENV

bool vs void* casts on the same object

c++ c++11 casting

Is the address of a local variable a constexpr?

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

c++ c++11 initialization

What does the word capture mean in the context of lambdas?

c++ c++11 lambda

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

c++11 random

Confusion about auto keyword in C++ [duplicate]