Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Detect existence of private member

Why is non-const std::array::operator[] not constexpr?

c++ arrays c++14 constexpr

Why use a perfectly forwarded value (a functor)?

SFINAE and partial class template specializations

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

How to make std::make_unique a friend of my class

How to check if a pointer points to a properly aligned memory location?

Why generic lambdas are allowed while nested structs with templated methods aren't?

Can returning a local variable by value in C++11/14 result in the return value being constructed by rvalue when no copy/move is involved?

c++ c++11 c++14

Why can the return type of main not be deduced?

std::unique_ptr of base class holding reference of derived class does not show warning in gcc compiler while naked pointer shows it. Why?

c++ c++14 gcc-warning

How to implement make_unique function in C++11? [duplicate]

c++ c++11 unique-ptr c++14

How can I force template parameter type to be signed?

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

Why was 1 << 31 changed to be implementation-defined in C++14?

c++ bit-shift c++14

Given int **p1 and const int**p2 is p1 == p2 well formed?

Why does decltype(auto) return a reference here?

c++ auto c++14 decltype

Throw in constexpr function

c++ gcc c++14 constexpr

Does auto return type deduction force multiple functions to have the same return type?

Is it possible to test if a constexpr function is evaluated at compile time?

Why is initialization of a constant dependent type in a template parameter list disallowed by the standard?

"auto" variable used in lambda in its own initializer

c++ lambda auto c++14