CopperSpice: C++20 and Two's Complement
New video on the CopperSpice YouTube Channel:
C++20 and Two's Complement
by Barbara Geller and Ansel Sermersheim
About the video:
Someone mentioned C++20 is unusable because the standard now requires 2' Complement. Is is possible that he has a point and if so, on what basis did he make this claim?
We encourage everyone to watch our video to discover the history of Binary Representation.
Take a look and remember to subscribe.

Static reflection is under consideration for C++26. Wu Yongwei demonstrates how to achieve reflection now and shows some examples of what C++26 might make possible.
The trick to understanding C++ compiler error messages is to focus on two things. First, look at the beginning of the error message, which tells you what went wrong at a very low level. Then skip over the intermediate errors that follow the chain of calls until you end up at the line of code that you wrote. That original line of code is the one that is leading the compiler to a bad place. After that, you sometimes get supplemental information that helps you understand the low-level error better.
Last time,
Since its introduction,