struct name cleanup in preparation for AST + warning removal
[babeltrace.git] / formats / ctf / metadata / ctf-scanner.h
index 07b5df7c75ac1d64201ee35587a174a39cf48212..f25efb9e5277cb2c78d12deebe49e238e81b1cdb 100644 (file)
@@ -9,11 +9,17 @@
 typedef void* yyscan_t;
 #endif
 
+struct ctf_scanner_scope;
+struct ctf_scanner_scope {
+       struct ctf_scanner_scope *parent;
+       GHashTable *types;
+};
+
 struct ctf_scanner {
        yyscan_t scanner;
        struct ctf_ast *ast;
-       struct scope root_scope;
-       struct scope *cs;
+       struct ctf_scanner_scope root_scope;
+       struct ctf_scanner_scope *cs;
        struct cds_list_head allocated_strings;
 };
 
This page took 0.023858 seconds and 4 git commands to generate.