Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Do the following two declarations involving automatic return type work the same? If so, why?

c++ c++11 c++14

c++0x inherited constructor in templates

Questions about the move assignment operator

Efficient use of move semantics together with (N)RVO

How to generate a std::get like function for my class?

c++ templates c++11

C++: Why is 'operator+=' defined but not 'operator+' for strings? [duplicate]

c++ string c++11 operators

why vector does not updates in loop?

c++ c++11 vector

What is a "hint"?

c++ c++11

Trying to return a `std::unique_ptr` constructed with `NULL`

c++ c++11

std::ofstream == NULL won't compile for -std=gnu++11, any workaround?

c++ c++11 gcc stl

Pretty way to say "foo not in {bar, baz}" in C++11/14

c++ c++11 c++14

static const std::vector<char> initialization without heap?

c++ c++11 vector

Iterate over map and use the pair as reference parameter C++11

c++ c++11 stdmap auto

C++11 static assert for equality comparable type?

Why is it impossible to move a variable to another std::thread

How to define a constant by expression in C++?

c++ c++11

Will many parameters in a recursive function cause performance issues?

c++ c++11

Is it possible to initialize a vector with increasing values in a single line?

c++ c++11 initializer-list

Operator comma overloading

How to append/copy an STL container object to another object when its value is not copy constructible e.g. std::thread