]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ir.h
Use C++ naming for structures
[xonotic/gmqcc.git] / ir.h
diff --git a/ir.h b/ir.h
index 7f4106ee902eff29a63a17b71b93d254778f3d23..49b0c31a87c09e2250de4ea859597ad1ff278c94 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -14,11 +14,11 @@ struct ir_block;
 struct ir_function;
 struct ir_builder;
 
-typedef struct {
+struct ir_life_entry_t {
     /* both inclusive */
     size_t start;
     size_t end;
-} ir_life_entry_t;
+};
 
 enum {
     IR_FLAG_HAS_ARRAYS              = 1 << 0,