Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is this compiler transformation allowed?

using std::function::target correctly

c++ c++11 c++17

In 2018 with C++11 and higher, are helper init() functions considered bad form?

c++ c++11

strong enum typedef: clang bug or c++11 standard uncertainty?

Assign a value to an rvalue reference returned from function

Passing a std::shared_ptr<T> to a function that takes a std::shared_ptr<const T>?

c++ c++11 c++14 shared-ptr

std::this_thread::yield() usage?

Can tr1::function swallow return values?

c++ c++11 tr1 boost-function

Is this C++0x optimization legal?

c++ c++11

Why am I failing to capture the "this" pointer by a lambda?

c++ c++11 lambda this

A preprocessor #define to check for language version? C++98/C++03/C++11

c++ c++11

Expression templates and ranged based for in C++11

When are special member functions of a template class instantiated?

Implicit conversion lookup on template fails for friend function defined outside of class

c++ templates c++11

Is it possible to use std::enable_if to select a member template specialization?

Can I alias a member of a base class in a derived class?

c++ c++11

How to parallelize a divide-and-conquer algorithm efficiently?

When should I use uniform initialization? [duplicate]

c++ c++11 struct

Unpacking arguments from tuples

Do I have to overload every operator for a class to behave like one of its member variables?