Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Is dereference null pointer UB in C++20?

Out-of-class definition with requires clause is rejected by clang but works with gcc

How to check if a member function or free function is for the exact given type(not any of its base)?

std::any implementation details

c++ language-lawyer c++20

Expand constexpr array into positional function arguments

Is there a way to specify and use a list of all data members belonging to a C++ class

C++20 <chrono> incomplete type used in nested name specifier

Why [[no_unique_address]] attribute doesn't work in some cases?

c++ c++20

Is overloading on universal references now much safer with concepts in c++ 20

What is the C++20 "addressing restriction" good for?

c++ c++20 std

All programs were UB before C++20?

Conversion of std::vector to std::span<T> [duplicate]

c++ c++20 ctad

Writing a generic `string_to_float<T>` without overhead compared to `std::stof`

Deleted function template in requires-expression, differing compiler behavior

How do you do bounds checking with std span?

How to get away with using designated initializers in C++17? Or, why is it seemingly safe to use them, if it's really not?

c++20 msvc error c3861 base member not found

c++20 visual-studio-2022

Does GCC or Clang implement chrono::current_zone()?

c++ g++ c++20 clang++

What is the difference between lambda capture [&args...] and [...args = std::forward<Args>(args)]