test/chimaera.sod: Reformatting.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 5 Jan 2016 17:17:40 +0000 (17:17 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 29 May 2016 13:40:40 +0000 (14:40 +0100)
Takes up less space now.

test/chimaera.sod

index 193d5ec..644bb74 100644 (file)
@@ -16,11 +16,8 @@ code h : includes {
 class Animal : SodObject {
   int tickles = 0;
 
-  [combination = progn]
-  void tickle();
-
-  [role = before]
-  void nml.tickle() { me->nml.tickles++; }
+  [combination = progn] void tickle();
+  [role = before] void nml.tickle() { me->nml.tickles++; }
 }
 
 class Lion : Animal {