Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why is 'mutable' a lambda function attribute, instead of being a capture type?

c++ c++11

All versions of GCC struggle with a template that has the default type in a definition

c++ c++11 templates gcc

C++11 lambdas: member variable capture gotcha

c++ c++11

In C++11, can raw string literals have multiple lines?

c++ string c++11

Const reference VS move semantics

Function that accepts both lvalue and rvalue arguments

c++ function c++11 lvalue rvalue

Is std::move really needed on initialization list of constructor for heavy members passed by value?

Omit return type in C++11

c++ c++11 return-value

Python-like loop enumeration in C++ [duplicate]

c++ for-loop c++11

Understanding c++11 memory fences

c++ c++11 atomic

Dynamic aligned memory allocation in C++11

c++ c++11

C++: Can a macro expand "abc" into 'a', 'b', 'c'?

C++: Is there a standard definition for end-of-line in a multi-line string constant?

c++ c++11 portability

std::atomic | compare_exchange_weak vs. compare_exchange_strong

Using string literals without using namespace std

c++ c++11

Default pure virtual destructor

c++ c++11

What is the best smart pointer return type for a factory function?

Why has the std::vector::resize signature been changed in C++11?

c++ c++11 vector stl resize

Is "enum class" a class type in C++?

c++ c++11 enums c++17

Write a function that accepts a lambda expression as argument

c++ lambda c++11