X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=qcsrc%2Flib%2Faccumulate.qh;h=a32649f5c8d4118248f8a5cc59412c734c2b6c0e;hb=6c1b876763dcb2d7e9e8d24c581b655ccce87a6f;hp=e3d17b9f26848ae9f473b1c844878729274fd784;hpb=5fd000a882130eb461bd29c7ad63e5b55780d23d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/accumulate.qh b/qcsrc/lib/accumulate.qh index e3d17b9f2..a32649f5c 100644 --- a/qcsrc/lib/accumulate.qh +++ b/qcsrc/lib/accumulate.qh @@ -1,5 +1,4 @@ -#ifndef ACCUMULATE_H -#define ACCUMULATE_H +#pragma once #ifdef QCC_SUPPORT_ACCUMULATE #define ACCUMULATE_FUNCTION(func, otherfunc) \ @@ -56,5 +55,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