Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why doesn't an if constexpr make this core constant expression error disappear?

Why does const auto &p{nullptr} work while auto *p{nullptr} doesn't in C++17?

c++ c++17 auto nullptr

std::ptr_fun replacement for c++17

c++ c++17

Lambda passed to template not defined

c++ templates lambda c++17

Correctly propagating a `decltype(auto)` variable from a function

Constructor conditionally marked explicit

c++ c++17

Contiguous iterator detection

Should reading negative into unsigned fail via std::cin (gcc, clang disagree)?

Compile-time reflection in C++1z? [closed]

How to enable C++17 on Mac?

c++ macos clang c++17 darwin

C++17 lambda capture *this

c++ lambda c++17 c++-faq

What do we need std::as_const() for?

Why does aggregate initialization not work anymore since C++20 if a constructor is explicitly defaulted or deleted?

Local reference to std::cout captured by lambda without asking for it

How to check if a pointer points to a properly aligned memory location?

std::function with noexcept in C++17

c++ function c++17 noexcept

How to make a safer C++ variant visitor, similar to switch statements?

Access to constexpr variable inside lambda expression without capturing

Why does returning a std::optional sometimes move and sometimes copy?

Is there a reason to use std::conjunction/std::disjunction instead of a fold expression over "&&"/"||"?