Fix for wrong tokens for GNU/MSVC attribute captures (parse_attributes)

Also a fix for a typo in the readme...
This commit is contained in:
2023-08-08 15:35:06 -04:00
parent c7647ab00f
commit 67d02c1f62
4 changed files with 13 additions and 11 deletions

View File

@ -118,8 +118,9 @@ void check_SOA()
{
log_fmt("\ncheck_SOA:");
gen::init();
Builder soa_test = Builder::open( "SOA.gen.hpp" );
soa_test.print( parse_using( code(
using u16 = unsigned short;
)));
@ -136,6 +137,7 @@ void check_SOA()
u64 D;
};
))
, 100
));
soa_test.write();

View File

@ -18,7 +18,7 @@ int gen_main()
check_SOA();
check_singleheader_ast();
// check_singleheader_ast();
return 0;
}