mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-14 18:51:47 -07:00
No longer using components/temp/ast_inlines (switched to helper function to avoid macro usage)
Increased the arg count support of num_args to 100.
This commit is contained in:
@ -132,7 +132,7 @@ u32 gen_sanity()
|
||||
|
||||
// Namespace
|
||||
{
|
||||
CodeNamespace def = parse_namespace( code(
|
||||
CodeNS def = parse_namespace( code(
|
||||
namespace TestNamespace
|
||||
{
|
||||
}
|
||||
@ -283,7 +283,7 @@ u32 gen_sanity()
|
||||
using TestUsing = u8;
|
||||
));
|
||||
|
||||
CodeNamespace nspace = parse_namespace( code(
|
||||
CodeNS nspace = parse_namespace( code(
|
||||
namespace TestNamespace
|
||||
{
|
||||
};
|
||||
|
@ -139,7 +139,7 @@ u32 gen_sanity_upfront()
|
||||
|
||||
// Namespace
|
||||
{
|
||||
CodeNamespace namespace_def;
|
||||
CodeNS namespace_def;
|
||||
{
|
||||
CodeBody body = def_namespace_body( 1
|
||||
, def_comment( txt_StrC("Empty namespace body") )
|
||||
|
Reference in New Issue
Block a user