We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cce2c5 commit 36ccbf9Copy full SHA for 36ccbf9
source/parse.h
@@ -3616,6 +3616,15 @@ struct declaration_node
3616
return ret;
3617
}
3618
3619
+ auto is_function_with_compound_body() const
3620
+ -> bool
3621
+ {
3622
+ return
3623
+ initializer
3624
+ && initializer->is_compound()
3625
+ ;
3626
+ }
3627
+
3628
auto is_function_with_this() const
3629
-> bool
3630
{
0 commit comments