Fix typo + cosmetics
[cgds.git] / test / helpers.h
index 49dec3b..3e8c32b 100644 (file)
@@ -3,13 +3,13 @@
 
 // types (POD) to be used as items inside our data structures
 typedef struct {
-    int a;
-    double b;
+       int a;
+       double b;
 } StructTest1;
 
 typedef struct {
-    float a;
-    StructTest1* b;
+       float a;
+       StructTest1* b;
 } StructTest2;
 
 #endif