Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

lambda fct returning reference

c++ c++11 lambda

Why can't I use operator bool() for std::ofstream

c++ c++11 c++14 c++17

Dangerous implicit conversion in emplace

c++ c++11

Copy std::vector but apply lambda to each element

c++ c++11 vector lambda

Is deleting copy and move constructors/assignment operators in base class enough?

c++ c++11 deleted-functions

Learning about C++ 0x features

c++ c++11

Using std::unique_ptr with standard containers

c++ pointers c++11 unique-ptr

How to test whether expression is a temporary?

c++ c++11 static-assert

Are variadic templates a potential code bloat?

When does it make sense to use unique_ptr with STL containers? (C++11)

what's the magic of std:move

c++ c++11 rvalue-reference

C++11 std::thread giving error: no matching function to call std::thread::thread

c++ c++11 stdthread

Parentheses at the end of a C++11 lambda expression

c++ lambda c++11 parentheses

Alternative function syntax difference

Override keyword throwing an error while compile

c++ c++11 g++ overriding

In c++11, does dynamic_cast return nullptr or 0?

c++11 dynamic-cast nullptr

C++11 auto iterator type with std::begin(), std::end() issue

c++ c++11 std

Algorithm to unify contiguous chunks in a collection of chunks

Adding element to back of STL container

c++ c++11 stl c++14

Force foreach to use const iterators

c++ c++11 iterator containers