Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Why doesn't std::ranges::contains try using member contains just like std::ranges::begin tries using member begin? Or does it?

How to create a unique_ptr to a value passed by base class reference?

Different behavior of consteval in GCC and MSVC (not work)

Which part of the C++ standard forbids destroying an object twice?

Why does calling std::ranges::rotate on a vector result in a "no matching function call to '__begin'" error using clang 15?

c++ c++20 clang++ compiler-bug

What is the difference between std::span and gsl::span?

fmt::dynamic_format_arg_store replacement/implementation for std::format

c++ std c++20 fmt

C++ logging source line of an object instantiation as a constant expression without a macro

Why is `std::uninitialized_copy/move etc.` not constexpr?

c++ constexpr c++20

Using std::apply on class method

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

Is any C++20 feature test for defaulted equal operator?

c++ operators c++20

How to strlen in constexpr?

c++ clang c++20

Eigen3 library with C++20 format

c++ c++20 eigen3

The problem of libstdc++‘s implementation of std::declval

`constexpr` code expected to compile in c++20 but it doesn't. Why?

c++ c++20

Aggregate initialization of a derived class with designator [duplicate]

c++ initialization c++20

Use error codes with C++20 Coroutines i.e. awaitables with Boost ASIO

c++ boost c++20 boost-asio

Dynamically allocated member pointer is not zero initialized?

c++ c++20 member-pointers

How to check template parameter is a container of fixed length N using concepts?

Usage of exported inline variables in c++20 modules

c++ module c++20 inline linkage