I would like to compile some console application examples in C++ builder (Rad Studio 12.3). However, when I run certain examples, I receive this error.
[bcc64x Error] File1.cpp(6): no member named 'format' in namespace 'std'
I know the culprit is this line:
using std::format;
My question is can I update C++ Builder to use C++ 20 so that I can run lines like that without error? If so how?
Thanks