Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

In C++ 11, how do I specialize a function template that takes a function object based on return type?

C++ change access for member function with overloading

c++ c++11 c++14

Is simple but frequent usage of std::stringstream a premature pessimization?

c++ performance c++11 stl

how to enable c++11 in linux

c++ linux c++11

Lvalue decaying to rvalue with auto error

c++ c++11 auto lvalue

Iterator invalidation by `std::string::begin()`/`std::string::end()`?

Performance of std::mutex and QMutex in MinGW 64 (posix thread version)

qt c++11 stl mutex atomic

Checking whether a function (not a method) exists in c++11 via templates

Is there a more elegant way of marrying sprintf and std::string in C++?

Intuitive way to make something like a member function for an enum class (C++11)

c++ c++11 enums

How to avoid std::vector to copy on (re-)allocation?

c++ c++11 vector

When does std::shared_ptr release its object?

std::condition_variable wait() and notify_one() synchronization

New throws bad_alloc despite <new> header not being defined?

c++ c++11 bad-alloc

<chrono> overflow guarantees

Difference between char[N] and char (&)[N] in parameter list

c++ c++11

How to initialize a template sized array?

c++ templates c++11

How can I run a lambda immediately?

c++ c++11 lambda

Copy constexpr array into class

Using `this->` in a lambda that captures `this`

c++ c++11 lambda