X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Flib%2Faccumulate.qh;h=2d1e40212fba3c9cd2d9f28216a5a3c2071c3d7e;hb=50ed46682d172b639422b41e4bce6cbf3a5278de;hp=e3d17b9f26848ae9f473b1c844878729274fd784;hpb=46f7bde5d7554a7621f1285640946f01cb5e4016;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/accumulate.qh b/qcsrc/lib/accumulate.qh index e3d17b9f2..2d1e40212 100644 --- a/qcsrc/lib/accumulate.qh +++ b/qcsrc/lib/accumulate.qh @@ -1,9 +1,8 @@ -#ifndef ACCUMULATE_H -#define ACCUMULATE_H +#pragma once #ifdef QCC_SUPPORT_ACCUMULATE #define ACCUMULATE_FUNCTION(func, otherfunc) \ - [[accumulate]] void func() \ + ACCUMULATE void func() \ { \ otherfunc(); \ } @@ -11,7 +10,6 @@ func() #else #ifdef HAVE_YO_DAWG_CPP -// TODO make ascii art pic of xzibit // YO DAWG! // I HERD YO LIEK MACROS // SO I PUT A MACRO DEFINITION IN YO MACRO DEFINITION @@ -56,5 +54,3 @@ if (!field) { field = (first + count); ++count; } #define CHECK_MAX_COUNT(name, max, count, type) \ if (count > max) { error(strcat("Maximum ", type, " hit: ", #name, ": ", ftos(count), ".\n")); } - -#endif