Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

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

How to assign the address of an existing object to a smart pointer?

Obtaining function pointer to lambda?

c++ c++11 lambda c++14

c++ lambdas how to capture variadic parameter pack from the upper scope

Can I obtain C++ type names in a constexpr way?

Destruction of return value on destructor exception

Is it possible to read a file at compile time?

c++ c++11 c++14

Which headers in the C++ standard library are guaranteed to include another header?

Generating a sequence of zeros at compile time

Why does auto return type deduction work with not fully defined types?

C++14 value-initialization with deleted constructor

c++ language-lawyer c++14

C++ destructor with return

Bit count : preprocessor magic vs modern C++

Calling `this` member function from generic lambda - clang vs gcc

Is std::vector<T> a `user-defined type`?