Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

About safe operations involving unique pointers

c++ c++14 unique-ptr

Is there a special rule for lambda in case of decltype(auto)?

C++ Move Semantics - Wrapping Legacy C APIs

c++ c++11 constructor move c++14

static member function make_shared of shared_ptr

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

Inferring return type of templated member functions in CRTP

c++ templates c++11 crtp c++14

Check whether equal string literals are stored at the same address

c++ c++14 string-literals

std::list - are the iterators invalidated on move?

c++ c++11 c++14

CRTP - Checking from the base class that the derived one meets requirements

c++ c++14 crtp

initializer_list immutable nature leads to excessive copying

Can default function arguments "fill in" for expanded parameter packs?

No <optional> in MS Visual Studio 2013 - what to do?

Can't assign a `std::unique_ptr` to a base class in clang when using an alias template

c++ clang c++14 clang++

How to memset an anonymous union with 0

Could it be possible to have types with move operations that throw in containers?

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

Create a type list combination of types in C++

Is it possible to have mutually referential C++ templates?

c++ templates c++14

How to `std::bind()` a standard library algorithm?

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

constexpr non-static member function with non-constexpr constructor (gcc,clang differ)

c++ gcc clang c++14 constexpr

Zipping an `std::tuple` and variadic arguments

c++ condition variable notification not working as expected