Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

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

Is it defined behavior to reference an early member from a later member expression during aggregate initialization?

Why shared_timed_mutex is defined in c++14, but shared_mutex in c++17?

c++ c++14 std c++17

Why doesn't "auto ch = unsigned char{'p'}" compile under C++ 17?

C++11 aggregate initialization for classes with non-static member initializers

Difference observed between MSVC14.1 and gcc8.3 when a destructor call for an automatic variable amends a function return value

c++ c++14

In std::exchange, why is the second template parameter defaulted?

Difference between C++14 and C++17 using: `*p++ = *p`

c++ c++14 c++17

Is there an automatic noexcept specifier?

c++ c++11 c++14 noexcept

C++1y/C++14: Variable Template Specialization?

c++ templates c++14