$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Vinnie Falco (vinnie.falco_at_[hidden])
Date: 2021-10-12 17:26:54
On Tue, Oct 12, 2021 at 10:17 AM Ivan Matek <libbooze_at_[hidden]> wrote:
> I see examples work with std::cout, would it work (in C++20 compilers) with fmt::format?
Good question! I'm not sure... the library provides operator<< for all
important types. If fmt::format uses operator<< internally, then I
suppose it should work. But if it doesn't work, and there's something
special that Boost.URL needs to do to make it work, there's no problem
adding it - conditionally compiled when C++20 is available.
Thanks