Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

A problem with higher order functions and lambdas in C++0x

Temporary not getting destructed at the end of the statement

c++ c++11

rvalue reference with assignement operator

c++ c++11 rvalue-reference

object of shared pointer being deleted while instances of shared_ptr are still in scope

c++ boost c++11 shared-ptr

Understanding eliding rules with regard to c++11

c++ c++11

decltype(*&fun) is strange?

c++ g++ c++11 decltype

how to move an std::unique_ptr<> from one STL container to another?

c++ stl c++11

std::unordered_map::begin(int n) behavior

c++ stl c++11 unordered-map

Fluent interface pattern and std::unique_ptr

enable_if seems to work outside a class but not inside

c++ templates c++11 sfinae

what to use in place of std::map::emplace?

c++ c++11 std

What exactly does "static initialization" mean?

c++ c++11

Use for applying weak_ptr to contents of unique_ptr

C++11 move and reassigning

c++ c++11

C++11 - I lost a move/copy assignment

c++ c++11

C++11 variadic templates and comma-separated expressions equivalence

Is there valid "use cases" for Undefined Behaviour?

c++11 undefined-behavior

Is it possible to get the return type of a function without passing arguments to it?

c++ c++11

Memory Leaks in Visual Studio

c++ using time() with both <time.h> and <ctime> included - which one takes precedence?

c++ c++11 namespaces