Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

constexpr performing worse at runtime

Why lambda removes cv and ref?

Getting unexpected result when compiling with clang optimization

c++ c++11 boost clang

Why can a std::tuple not be assigned with an initializer list?

c++11 stdtuple

What will happen if I assign negative value to an unsigned char?

c c++11 unsigned

Vector move constructor slower than copy constructor

How to check if thread has finished work in C++11 and above?

Is there an actual 4-bit integer data type in C++11 [duplicate]

c++ c++11 c++14

Calling volatile member function using not volatile object in C++