Dmitry Arkhipov
Dmitry Arkhipov
I'm not sure if I understand your issue correctly. Are you asking for an example of using the library for parsing from `std::fstream`?
So, the issue is that conversion of your types do not round trips in C++20. See this: https://godbolt.org/z/zo5GedabM Four asserts fail in C++17, but 3 fail in C++20. What this...
As I've said previously, in a future release (probably 1.81) we will make the traits more restrictive, so your case will start working again in C++20. In addition we do...
That code uses Boost.Endian. If we're going to test it, we'll have to add dependency on Endian in CMake. Is this acceptable? Endian won't add any more transitive dependencies, and...
I haven't touched any tests yet, just wanted to check if this is a direction that could be pursued. The basic idea is to replace code that potentially loads the...
Alternatively, we could just add necessary remotes in constructor.
That is what I originally wanted to do, but then I thought, that there is a reason why adding remotes wasn't put into constructor but into `run` method in the...
I like Wandbox'es API more. Feature-wise they seem mostly equivalent, but Wandbox supports using multiple files (can be useful, for more advanced lessons), and returns result as JSON (probably easier...
I suggest to not touch anything related to linkage until we discuss TUs, and to not touch those until we discuss toolchains. That is, no `static` or `inline`. I would...