Re-format new C++ files
[babeltrace.git] / src / plugins / ctf / common / metadata / scanner.hpp
index d1ab1d90c530cdab2f5bea93b5a09ac4f69c3118..d924ec53e37d38c50dd29e001913108689e3d42e 100644 (file)
 #include "ast.hpp"
 
 #ifndef YY_TYPEDEF_YY_SCANNER_T
-#define YY_TYPEDEF_YY_SCANNER_T
-typedef voidyyscan_t;
+#    define YY_TYPEDEF_YY_SCANNER_T
+typedef void *yyscan_t;
 #endif
 
 struct ctf_scanner_scope;
-struct ctf_scanner_scope {
-       struct ctf_scanner_scope *parent;
-       GHashTable *classes;
+struct ctf_scanner_scope
+{
+    struct ctf_scanner_scope *parent;
+    GHashTable *classes;
 };
 
-struct ctf_scanner {
-       yyscan_t scanner;
-       struct ctf_ast *ast;
-       struct ctf_scanner_scope root_scope;
-       struct ctf_scanner_scope *cs;
-       struct objstack *objstack;
+struct ctf_scanner
+{
+    yyscan_t scanner;
+    struct ctf_ast *ast;
+    struct ctf_scanner_scope root_scope;
+    struct ctf_scanner_scope *cs;
+    struct objstack *objstack;
 };
 
 BT_HIDDEN
@@ -39,10 +41,9 @@ void ctf_scanner_free(struct ctf_scanner *scanner);
 BT_HIDDEN
 int ctf_scanner_append_ast(struct ctf_scanner *scanner, FILE *input);
 
-static inline
-struct ctf_ast *ctf_scanner_get_ast(struct ctf_scanner *scanner)
+static inline struct ctf_ast *ctf_scanner_get_ast(struct ctf_scanner *scanner)
 {
-       return scanner->ast;
+    return scanner->ast;
 }
 
 BT_HIDDEN
This page took 0.024681 seconds and 4 git commands to generate.