diff --git a/include/util/string_util.hpp b/include/util/string_util.hpp index 1a54c9475..41c5f091f 100644 --- a/include/util/string_util.hpp +++ b/include/util/string_util.hpp @@ -15,7 +15,7 @@ namespace util // precision: position after decimal point // length: maximum number of digits including comma and decimals // work with negative values to prevent overflowing when taking -value -template static inline char *printInt(char *buffer, int value) +template char *printInt(char *buffer, int value) { static_assert(length > 0, "length must be positive"); static_assert(precision > 0, "precision must be positive");