]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/arithmetic-operator.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / arithmetic-operator.hh
index 63318d933861eef487946dc941dac3a41ba0e6d7..88eeda35d55d62323c89845b3e9765abdeb0c1a1 100644 (file)
@@ -1,22 +1,21 @@
-/*   
-  arithmetic-operator.hh -- declare 
-  
+/*
+  arithmetic-operator.hh -- declare
+
   source file of the Flower Library
-  
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #ifndef ARITHMETIC_OPERATOR_HH
 #define ARITHMETIC_OPERATOR_HH
 
-#define IMPLEMENT_ARITHMETIC_OPERATOR(type, op)  \
-inline type \
-operator op (type a1, type const& a2)          \
-{                                              \
-  a1 op ## = a2;                                       \
-  return a1;                                   \
-}
+#define IMPLEMENT_ARITHMETIC_OPERATOR(type, op)        \
+  inline type                                  \
+  operator op (type a1, type const &a2)                \
+  {                                            \
+    a1 op ## = a2;                             \
+    return a1;                                 \
+  }
 
 #endif /* ARITHMETIC_OPERATOR_HH */