X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fprofiler.h;h=25d89c6c8a6304fd77988ab50fc01189c0f5c5b3;hb=8852333eb3042580592ade478e5def20f8ed5d4c;hp=e746c489c525355a92d188aeb864676fa505f468;hpb=6833e04bc55156025267c39a58a29007318129fa;p=oweals%2Fminetest.git diff --git a/src/profiler.h b/src/profiler.h index e746c489c..25d89c6c8 100644 --- a/src/profiler.h +++ b/src/profiler.h @@ -22,9 +22,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "irrlichttypes.h" #include +#include + #include "jthread/jmutex.h" #include "jthread/jmutexautolock.h" -#include #include "util/timetaker.h" #include "util/numeric.h" // paging() #include "debug.h" // assert() @@ -73,7 +74,7 @@ public: else{ /* No add shall have been used */ assert(n->second != -2); - n->second = (std::max)(n->second, 0) + 1; + n->second = MYMAX(n->second, 0) + 1; } } {