]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/smobs.hh
Run fixcc.py with astyle 2.02
[lilypond.git] / lily / include / smobs.hh
index 22a4d183099bf069d70fe9cc423c851d180bd2cc..cd28a29c3f0af531de7cb954f65e538fb1c80b02 100644 (file)
@@ -153,10 +153,12 @@ void protect_smob (SCM smob, SCM *prot_cons);
 void unprotect_smob (SCM smob, SCM *prot_cons);
 
 extern bool parsed_objects_should_be_dead;
-class parsed_dead {
+class parsed_dead
+{
   static vector<parsed_dead *> elements;
   SCM data;
-  SCM readout_one () {
+  SCM readout_one ()
+  {
     SCM res = data;
     data = SCM_UNDEFINED;
     return res;
@@ -171,11 +173,11 @@ public:
 };
 
 #ifndef NDEBUG
-#define ASSERT_LIVE_IS_ALLOWED(arg)                                    \
-  do {                                                                 \
-    static parsed_dead pass_here;                                      \
-    if (parsed_objects_should_be_dead)                                 \
-      pass_here.checkin (arg);                                         \
+#define ASSERT_LIVE_IS_ALLOWED(arg)                                     \
+  do {                                                                  \
+    static parsed_dead pass_here;                                       \
+    if (parsed_objects_should_be_dead)                                  \
+      pass_here.checkin (arg);                                          \
   } while (0)
 #else
 #define ASSERT_LIVE_IS_ALLOWED(arg) do { } \