Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to determine a larger type of a decltype expression

c++ c++11

Is it possible to generate a parameter pack?

In c++11, is there ever still a need to pass in a reference to an object that will accept the output of a function?

Make interchangeable class types via pointer casting only, without having to allocate any new objects?

How to sort a container of std::shared_ptr<Widget> objects?

c++ c++11 stl-algorithm

Can list initialization not be used for private members?

Increase compile-time variable with every instantiation of a generic class

Exposing member variables methods in C++

c++ c++11

Correct behaviour for std::vector<T>::value_type

c++ visual-c++ c++11

Returning a unique_ptr<T> . Concept clarification

Compile C++11 code on mac?

c++ c++11

NULL == pointer [duplicate]

c++ c++11

How do I create a vector of object values from a vector of object pointers?

c++ c++11

C++11 thread error runtime

c++ multithreading c++11

narrowing conversion from int to long unsigned int {} is ill-formed in C++11

c++ c c++11 gcc-warning gcc4.8

What does " for (const auto &s : strs) {} " mean?

c++ c++11 for-loop stl range

Is the order for variadic template pack expansion defined in the standard?

Boolean value returned on a function call to null object

c++ c++11

How to neatly initialize struct tm from ctime

c++ c++11 ctime

Why STL unordered_map and unordered_set cannot be sorted by STL algorithms?