Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

range based for loop for custom linked list containing pointers in C++, only returns objects

Is this safe? Rvalue and reference return values

c++ c++11 reference c++14 rvalue

Designing 2 classes having references to each other using smart pointers

c++ c++11 smart-pointers

Template function argument deduction with an implicit conversion

Bug in variadic function template specialization with MSVC?

Cant initialize a std array into a std vector

c++ c++11

How can I specialize a template which depends on a static data member of a class?

c++ templates c++11

C++11 variadic template + inheritance

Is strnlen function supported in C++, on codeblocks ide?

c++ c++11

How to get size of boost SPSC Queue?

c++ c++11 boost queue size

std::mutex::lock blocking CPU usage

c++ multithreading c++11

Solving knight tour with c++

C++11 std::multiplies on vector containing 0's

c++11 vector stl

Pointer wrapper for insertion

c++ c++11 stl

How to find max element of a vector with user defined predicate

c++ c++11 stl

Printing a non type template inner class

c++ c++11 type-inference

Is there a data race on packaged task arguments?

the implemention of std::initializer_list

c++ c++11 stl

Do I need a virtual destructor if descendant classes have no non-static members or destructors? [duplicate]