remove cstdlib

This commit is contained in:
inspectredc
2024-04-03 11:31:40 -06:00
committed by Lywx
parent 9b7b9f69e4
commit 8e3f1cf093
-2
View File
@@ -5,8 +5,6 @@
#include "utils/Decompressor.h"
#include "utils/TorchUtils.h"
#include <cstdlib>
#define FORMAT_INT(x, w) std::dec << std::setfill(' ') << std::setw(w) << x
#define FORMAT_FLOAT(x, w, p) std::dec << std::setfill(' ') << std::fixed << std::setprecision(p) << std::setw(w) << x
#define GET_MAG(num) ((uint32_t)((abs(int(num)) > 1) ? std::log10(abs(int(num))) + 1 : 1))