Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Better way to move objects from one std::deque to another?

c++ c++11 c++14

Non-pointer class member: how good is it? [duplicate]

c++ c++14

Is it possible to deserialize using Boost.Hana?

c++ c++14 boost-hana

Force compiler to choose copy constructor with const T& as a parameter

c++ c++14 copy-constructor

Error when returning reference to type given the expression: `cond ? *this : throw()`

c++ visual-c++ g++ c++14 clang++

Simple lambda function I could not understand

c++ lambda c++14 auto

switching to another different custom allocator -> propagate to member fields

c++ class memory c++14 allocator

Does a placeholder in a trailing-return-type override an initial placeholder?

How to construct a tuple from an array

std::move with std::shared_ptr in lambda

POD members default initialization without braces

Can I have non owning shared pointers?

How to initialise a floating point array at compile time?

How to define non-member operator overload for class template?

What is a good alternative to this C++17 fold expression in C++14?

Where can I find information on the C++ [[deprecated]] attribute

c++ c++11 c++14

Why do I have to call operator<< as a method for SFINAE to work with void_t?

c++ c++11 c++14 sfinae enable-if

C++ template auto return type with arrow-notation require decltype?

c++ templates c++14

Why initialize unique_ptr with a make_unique call?

c++ c++11 c++14 gotw

Are C++ references guaranteed to use pointers "internally"?

c++ c++14