Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

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?

Creating an uninitialized array of items which have default constructors?

Can you prevent inherited private members being called through the parent at compile time?

c++ c++11 c++14

Unexpected SFINAE failure using std::result_of

c++ c++14 sfinae result-of

Visual C++ initialization inconsistence with gcc and clang

Is it legal to initialize an array via a functor which takes the array itself as a parameter by reference?

Combination of variadic templates and multiple inheritance

c++ c++14

C++ iterating std::accumulate() over a map of unique_ptr: no known conversion

c++ c++14 stdmap

How to avoid macros in instantiating my templated class?

c++ templates c++14

Is there a short way to check if parameter pack doesn't contain types repetition? [duplicate]