Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is it correct to say that xvalues have identity and are movable?

c++ c++11 rvalue-reference

Is it legal for a standard algorithm comparator to accept objects of different types?

c++ c++11

Should I replace all calls to push_back with emplace_back?

c++ visual-studio c++11 stl

Query std::mutex for lock state

c++ multithreading c++11 mutex

.data() equivalent for std::queue

Object slicing when using std::enable_if

Print simply STL vectors of vectors recursively in C++

c++ templates c++11

weird gcc behavior with unsigned ints

c++ c++11 g++ c++14

Why can't RHR functions be overloaded?

c++ c++11

How can I use std::chrono::duration as a template parameter?

c++ templates c++11 stl chrono

Why passing constexpr object by const reference works, but by value doesn't compile

c++ c++11 c++14 constexpr

Default value for variable in C++ using cin >>

c++ c++11

Getting the type of parameters in a parameter pack

c++ templates c++11

Pointer-to-member confusion

c++ c++11 pointer-to-member

In C++, Is it possible to force the user to catch exceptions?

std::tuple vs std::array as items of a std::vector

c++ arrays c++11 vector tuples

how can I list-initialize my own class?

c++ c++11

How to Compile boost with GCC 5 using old ABI?

c++11 gcc boost linker abi

const dependent names returned from template functions, where does const go?

Initialize static std::map with unique_ptr as value