Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Can `auto &&` parameters be perfect forwarded?

Optimization of raw new[]/delete[] vs std::vector

Why elements can be inserted in a vector when using const_iterators

c++ c++14 const-iterator

Mark as deprecated function parameters in C++14

How can I instantiate a lambda closure type in C++11/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?