From 19ee21ae5a11762dcb10727c3ba742bf1b6a5b16 Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 23 Oct 2022 12:28:25 +0200 Subject: [PATCH] libc: Make string_to_integer_type static --- libs/libc/src/stdlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libc/src/stdlib.cpp b/libs/libc/src/stdlib.cpp index 8b524cc9..48f9184b 100644 --- a/libs/libc/src/stdlib.cpp +++ b/libs/libc/src/stdlib.cpp @@ -4,7 +4,7 @@ #include #include -template T string_to_integer_type(const char* str) +template static T string_to_integer_type(const char* str) { bool neg = false; T val = 0;