Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Function template works with local lambdas, but not with other functions

c++ templates lambda c++14

Can I initialize std::unique_ptr of array without default initialization ( I want just let it have dummy value ) [duplicate]

why rvalue can't assign to constexpr reference variable

c++ c++11 c++14 constexpr

Why does taking a function pointer to `operator new` compile in C++14, but not in C++17?

Define a Specialization As Instantiation of Another Class

c++ c++14 specialization

Empty braces around std::make_index_sequence

c++ tuples c++14

Issue with std::initializer_list constructor and "braced initialization"

How the when<> trait in boost.Hana works?

c++ c++14 boost-hana

access a constexpr member variable of a derived class through a base class reference via CRTP

c++ templates c++14 crtp

Initialize std::tuple with classes which have two or more arguments [duplicate]

c++ c++14 stdtuple

Increasing Performance in C++

§12.3.2 [class.conv.fct]/1 in C++1z changed substantially in relation to C++14. Does it make sense?

Delayed update with proxy objects vs. "Avoid unnamed objects with custom construction and destruction"

c++ c++11 c++14 c++17

Why `std::invalid_argument` is not caught with no-rtti in macOS M1 environment?

c++ macos c++14 std rtti

Printing character after addition as string in C++

c++ string c++14 c++17

decltype(auto) with multiple returning types using C++14

c++ c++11 c++14 auto decltype

Is it possible to pass variable template to function through lambda?