Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why does shared_ptr<int> p; p=nullptr; compile?

Is there any reason to not use exceptions to test if an element exists in a std::map

how to initialize a vector of regexes?

c++ regex vector c++11 mingw

C++ Split a string by blank spaces unless it is enclosed in quotes and store in a vector [duplicate]

c++ string c++11 vector split

std::condition_variable::notify_one() called several times without context switching

OpenMP: writing into std::map concurrently

c++ c++11 openmp

Can't serialize std::vector with Cereal

c++11 serialization cereal

const auto& for storing functions results, is it worthwhile?

c++ c++11 auto const-reference

C++ macro to test availability of __func__, __FUNCTION__, __PRETTY_FUNCTION__, etc

c++ c++11 gcc macros

Move operator with templates

bit-field in overload resolution for template

c++ gcc c++11 clang

std::function parameter is incomplete type not allowed

c++ c++11 lambda

constexpr and RTTI

c++ c++11 constexpr rtti

How to read a .tif floating point gray scale image in openCV

Range-based loop from a temporary returned by a member function

c++ c++11

Invalid void parameter when combining template parameters to form a function signature

c++ templates c++11

Can I get rid of template specialisation with std::enable_if?

c++ c++11 templates

Avoiding repetition of const and non-const version of getters?