Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Move vector between threads

c++11 clearing a container with std::swap vs operator=(T&&)

c++ c++11 std

Why can't I catch a luabind::error exception when my lua code throws an error?

Uncopyable class with automatic default and move constructors

How to store either rvalue or lvalue references in template

c++ c++11 rvalue

problems initializing a vector of vectors of an auto-inc type

How do I initialize an object of std::array<std::array<T, 2>, 2>?

Simple types with higher meaning (C++11)

c++ c++11 boost

Why is using the move constructor in a return statement legal?

c++ c++11

Smallest lexicographical value of a string

c++ string c++11

Why does this simple program using std::rotate not compile?

c++ c++11 std

Is it possible to apply a generic function over tuple elements?

c++ c++11 c++14

Using reference to pointer as a sequence in C++11 range for loop

c++ c++11

c++11 get string length in compile time by constexpr

c++ c++11 constexpr

Can I use std::bind to "attach" a state to a function?

c++ c++11 std

c++11 forwarddeclare thread,mutex,chrono

Constructing std::function target in-place

c++ c++11 std-function

constexpr of static tuple class member has linker error

c++ c++11 constexpr

Abbreviated type name long long vs long long int, is it standard-compliant?

Why does unique_ptr<T>::~unique_ptr need the definition of T?

c++ c++11 std smart-pointers