eo2: fix backslash alignment.
authorTom Hacohen <tom@stosb.com>
Tue, 30 Jul 2013 16:22:26 +0000 (17:22 +0100)
committerTom Hacohen <tom@stosb.com>
Thu, 10 Apr 2014 03:20:17 +0000 (04:20 +0100)
This is one of the reasons why I hate backslash alignments, you end up
fixing style when you should be working on code.

src/lib/eo/Eo.h

index 44e622e..20f30d5 100644 (file)
@@ -664,22 +664,22 @@ typedef struct _Eo2_Op_Call_Data
 #define EO2_VOID_FUNC_BODYV(Name, Func, ...) EO2_FUNC_BODYV(Name, void, Func, , __VA_ARGS__)
 
 // to define a EAPI class function
-#define EO2_CLASS_FUNC_BODY(Name, Ret, DefRet, Class)                                     \
-  Ret                                                                                     \
-  Name(void)                                                                              \
-  {                                                                                       \
-     typedef Ret (*__##Name##_func)(Eo_Class *);                                          \
-     _EO2_CLASS_FUNC_COMMON(Name, Ret, _func_(call.klass_id), DefRet, Class)              \
+#define EO2_CLASS_FUNC_BODY(Name, Ret, DefRet, Class)                        \
+  Ret                                                                        \
+  Name(void)                                                                 \
+  {                                                                          \
+     typedef Ret (*__##Name##_func)(Eo_Class *);                             \
+     _EO2_CLASS_FUNC_COMMON(Name, Ret, _func_(call.klass_id), DefRet, Class) \
   }
 
 #define EO2_VOID_CLASS_FUNC_BODY(Name, Class) EO2_CLASS_FUNC_BODY(Name, void, , Class)
 
-#define EO2_CLASS_FUNC_BODYV(Name, Ret, Func, DefRet, Class, ...)                         \
-  Ret                                                                                     \
-  Name(__VA_ARGS__)                                                                       \
-  {                                                                                       \
-     typedef Ret (*__##Name##_func)(Eo_Class *, __VA_ARGS__);                             \
-     _EO2_CLASS_FUNC_COMMON(Name, Ret, Func, DefRet, Class)                               \
+#define EO2_CLASS_FUNC_BODYV(Name, Ret, Func, DefRet, Class, ...) \
+  Ret                                                             \
+  Name(__VA_ARGS__)                                               \
+  {                                                               \
+     typedef Ret (*__##Name##_func)(Eo_Class *, __VA_ARGS__);     \
+     _EO2_CLASS_FUNC_COMMON(Name, Ret, Func, DefRet, Class)       \
   }
 
 #define EO2_VOID_CLASS_FUNC_BODYV(Name, Func, Class, ...) EO2_CLASS_FUNC_BODYV(Name, void, Func, , Class, __VA_ARGS__)