Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

CRTP base private constructor and derived friend class cause compilation error using C++17 and uniform initialization

c++ c++11 c++17 crtp

Data structure for efficient search

c++ data-structures c++17

Are there hidden dangers to link libraries compiled with different C++ standard?

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

Define a global variable template?

C++ Developer functions that can only be called by other developer functions

c++ c++17

Where can I find what std::launder really does? [duplicate]

Determining if a pack is empty or not

Can std::byte replace std::aligned_storage?

Why all function in <cstring> must not have constexpr?

c++ constexpr c++17

Upcasting through std::any

c++ c++17 std stdany

Template argument deduction for references as arguments

In what sense is std::disjunction short-circuiting at compile_time

Are all members of a Smart Pointer allocated on the Heap?

Why is `std::optional<T>::operator=` deleted when T contains a `const` data member?

Parentheses inside template arguments e.g. std::function<int(int, float)>

Why can't I make a unique pointer to an array, when I can make a shared pointer?

c++ c++17

Using std::apply on class method

c++ tuples c++17 c++20 stdapply

Is it defined behaviour to assign to function call in or in if (C++17)

C++ enum class default value without initialization

c++ gcc c++17

Is copy elision mandatory (if allowed at all) in the ternary operator?