Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to initialize a vector<int> v(1000) with values {1,1,1,...,1} without a loop in C++?

c++ c++11 vector syntax

Overloading a function defined in a namespace

c++ c++11 overloading

Threads - Mac vs Linux

How to handle step-by-step refactory of some heavily used libraries?

std::function type and template instantiation

Implicit conversion of lefthand argument in in-class declared friend operator

lambda functors assignment workaround

c++ c++11

Why does this function template call work?

c++ templates c++11

Evaluation of (de)reference operators

c++ pointers c++11 evaluation

C++ sort lambda comparator EXC_BAD_ACCESS [duplicate]

cout of negative value of signed char in C++

c++ c++11 gcc

removing constness in templated function

unique_ptr swap doesn't work

c++ c++11 swap unique-ptr

Is it appropriate to return a pointer to static data of a function?

c++ templates pointers c++11

Template Reference Collapsing Dropping cv-qualifiers for const Reference Return Type

Why does the default initialization of the elements of an array<T*, N> require C++14?

c++ arrays c++11 c++14

c++11 Why doesn't this move constructor work?

c++11 move