Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Is it possible to ignore the trailing return type feature of c++11 in favor of the function return type deduction feature of c++14?

Value-initialization of class containing std::queue

c++ gcc queue c++14

Inexplicable behaviour of the function accepting a universal reference and returning a const reference

c++ c++11 c++14

Is there a C++11/14 alternative to __attribute__((packed))

c++ c++11 gcc clang c++14

error determining a generic return type in C++11

Why are mutexes and condition variables trivially copyable?

c++ language-lawyer c++14

std::move or std::forward when assigning universal constructor to member variable in C++

templated function pointer as template parameter

c++ templates c++14

Is forward<T> the same as forward<T&&>?

function && qualifier behaviour

c++ c++14 rvalue-reference

constexpr defaulted default constructors

How to get the average of several chrono::time_points

c++ c++14 chrono

Deleted Function in std::pair when using a unique_ptr inside a map

c++ c++14 icc

Template functions versus named lambdas with auto parameters

Can I initialize an array using the std::initializer_list instead of brace-enclosed initializer?

std::map emplace/insert moving value being inserted

c++ map c++14

Specializing std::optional

Why constexpr is not the default for all function? [duplicate]

c++ c++14 constexpr

How do I create a tuple of N T's from an array of T?

c++ arrays tuples c++14

Compiler can't deduce the return type?

c++ c++14 auto decltype