Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

What makes a union member active?

`decltype` of generalized lambda capture inside body of a lambda - gcc vs clang

What is "a value not associated with an object"?

What does it mean to take the address of an rvalue reference?

c++ c++11 c++14

A failure to instantiate function templates due to universal (forward) reference to a templated type

May I declare a member type alias to a type in a surrounding scope, using the same name?

c++ g++ c++14 clang++ type-alias

Double brace initialization

What is the proper usage of a constexpr standard functor?

The member function Outer::f() is not a friend of class Outer::Inner. Why?

Why isn't the operator[] of a std::array temporary constexpr?

Why must the delimiters of raw string literals be under 16 chars?

std::vector<uint8_t> manually copying instead of calling memcpy when C++11/14 enabled

c++ c++11 gcc c++14 stdvector

Why to use std::move despite the parameter is an r-value reference

c++ c++11 c++14 move stdmove

std::errc, how to indicate success in retval

c++ c++14

Purpose of perfect forwarding for Callable argument in invocation expression?

adapter pattern : support underlying data that can be const or non-const, elegantly

Is it possible to check for existence of member templates just by an identifier?

Why can I access a struct defined inside a function from outside the function through return type deduction?

c++ c++14

Purpose of class = void in C++? [duplicate]

c++ c++11 templates c++14 void

Why can't I move the std::unique_ptr inside lambda in C++14?