Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Integer initialization of enum outside of range

c++ enums c++17

Range/Loop through N variables in [modern] C++

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

How to get return type and parameter type of a generic lambda?

Compiler discrepancy with simple meta function

c++ c++17

Can I have a std::optional<T> if T is neither constructible nor copyable nor movable?

c++ c++17 stdoptional

Error with `std::reduce()` method in C++17 using GNU G++17 and Clang++ 17/20 compilers

c++ gcc c++17 clang

A variable/data member of a class declared constexpr in C++17 is also static?

static c++17 constexpr

Can we take a const ref of a substring?

Hiding template arguments in std::variant

c++ c++17

Using enum class values in constexpr branches

How to wrap several boolean flags into struct to pass them to a function with a convenient syntax

warning: operator delete called on unallocated object

Detect build type (debug/release) in Visual Studio when using CMake

To forward or move or not; how to determine which is preferred within the context of a class's usage?

C++ confusing closure captures [v] vs [v = v]

c++ c++17

Choose between template function and auto type deduction

c++ templates auto c++14 c++17