Now using 2 spaces instead of tabs. Fix copyright years. Improve documentation
[cgds.git] / test / helpers.h
index 3e8c32b..bc0a604 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