În ziua de miercuri, 19 august 2020, la 20:09:43 EEST, Giovanni Mascellani a
scris:
> Hi,
>
> Il 19/08/20 16:41, BogDan Vatra ha scritto:
> > I tried to use boost with C++ 20 (gcc 10), and I got the following errors.
> > I also tried boost 1.73 (from conan.io) and everything compiles.
>
> Thanks for the report. Could you please provide a test program that
> fails compilation and its compilation command line?
>
> Thanks, Giovanni.
Hi,
There you go:
$ cat main.cpp
#include <boost/log/attributes.hpp>
int main()
{
return 0;
}
$ g++ -std=c++2a main.cpp
Cheers,
BogDan.