Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to initialize an array when using template<typename T> C++

c++ c++11

Why does unordered_set use significantly more RAM than data it contains?

c++ c++11 unordered-set

Can the container type be deduced in variadic templates?

How to pass a stack matrix by reference in C++

C++11 / Generated constructor

c++ c++11

Why does the C++ compiler makes it possible to declare a function as constexpr, which can not be constexpr?

How to make this initialization legal in C++?

c++ c++11

C++ std::priority_queue uses the lambda expression

c++ c++11 lambda

How move map to other map

c++ algorithm c++11

Returning different type from a function template depending on a condition

c++ c++11 templates

std::bad_weak_ptr exception when using shared_from_this

How to put a new line inside a string in C++?

string c++11

What happens when a copy of shared_ptr is made?

c++ c++11 shared-ptr

Comma operator in C++11 (sequencing)

What does a C++ compiler do with this initializer list?

c++ c++11 initializer-list

Why I get this warning? "Member 'x' was not initialized in this constructor"

Is it well-defined to modify an unordered_set inside a foreach loop if one breaks out immediately after?

Strange behaviour of std::find, returns true when the element is not in the vector

c++ c++11 c++14

Select function based on if template is pointer/reference or none

c++ c++11 sfinae

Use of c++ lambda expression to initialize a class member

c++ c++11 lambda