]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/axes.hh
* flower
[lilypond.git] / flower / include / axes.hh
index f0f438af1fc145bc632b72a3d79cc523c1f70ebf..3a1a7fc9dc90ab46e8fd65f4b76dbd5e9e99ced7 100644 (file)
@@ -6,17 +6,17 @@
   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-
 #ifndef AXES_HH
 #define AXES_HH
 
 #include <cassert>
 
-enum Axis {
+enum Axis
+  {
     X_AXIS =0,
     Y_AXIS =1,
-    NO_AXES=2,
-};
+    NO_AXES = 2,
+  };
 
 static inline
 Axis
@@ -31,7 +31,7 @@ static inline
 Axis
 other_axis (Axis a)
 {
-  return a ==  Y_AXIS ? X_AXIS : Y_AXIS;
+  return a == Y_AXIS ? X_AXIS : Y_AXIS;
 }
 
 #endif // AXES_HH