]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't accumulate the beginning of the constructor
authorTimePath <andrew.hardaker1995@gmail.com>
Sun, 3 May 2015 22:25:19 +0000 (08:25 +1000)
committerTimePath <andrew.hardaker1995@gmail.com>
Sun, 3 May 2015 22:25:19 +0000 (08:25 +1000)
qcsrc/menu/oo/classes.qc

index e6182ca332cca810b015635f9231b3fc84a09304..95bc0b28b71d6c485026d73693e0411b13687510 100644 (file)
@@ -10,7 +10,7 @@
 #endif
 
 #define CLASS(cname, base)                                          \
-[[accumulate]] entity spawn##cname(entity this, entity basevtbl) {  \
+entity spawn##cname(entity this, entity basevtbl) {                 \
     this = NEW(base); basevtbl = base##_vtbl;                       \
 }