]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Disable profile trace logs on static initiation functions
authorMario <mario.mario@y7mail.com>
Tue, 24 Dec 2019 16:19:41 +0000 (02:19 +1000)
committerMario <mario.mario@y7mail.com>
Tue, 24 Dec 2019 16:19:41 +0000 (02:19 +1000)
qcsrc/lib/static.qh

index e0ec96b8ec0c43872992e12523329c0be74e8f5d..e1879890e8521dfe9c5173c209aee501c89da628 100644 (file)
@@ -17,8 +17,8 @@ void profile(string s)
 }
 
 #define _STATIC_INIT(func, where) \
-       ACCUMULATE void _static_##func##profile() { profile(#func); } \
-       ACCUMULATE_FUNCTION(where, _static_##func##profile) \
+       /* ACCUMULATE void _static_##func##profile() { profile(#func); } */ \
+       /* ACCUMULATE_FUNCTION(where, _static_##func##profile) */ \
        ACCUMULATE void _static_##func(); \
        ACCUMULATE_FUNCTION(where, _static_##func) \
        void _static_##func()