aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-04-17 13:44:01 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-04-17 13:44:01 -0400
commite98f6854f5995c42d16641cee0281dacde4cc25c (patch)
tree1d02575949b9335a36853d0c00bc4e92a5b5e8bb /ast.h
parent35339e2aa028942d297f15521c26e1400fe1eca2 (diff)
Use leading underscore for file-local variables and functions instead of
"private" keyword
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast.h b/ast.h
index 1f0eb5a4..34c3ffa4 100644
--- a/ast.h
+++ b/ast.h
@@ -186,7 +186,7 @@ struct ast_s {
type_ast_t *ret_type;
ast_t *body;
ast_t *cache;
- bool is_inline, is_private;
+ bool is_inline;
} FunctionDef;
struct {
arg_ast_t *args;