From 16627292134ef6a79b478839e9af74f50265976a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 14 Feb 2017 22:30:05 -0800 Subject: [PATCH] Cleanup. --- src/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string.cpp b/src/string.cpp index 55a1001..a0c4344 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -420,7 +420,7 @@ namespace bx int32_t vsnprintf(char* _out, int32_t _max, const char* _format, va_list _argList) { -#if 1 // BX_CRT_NONE +#if BX_CRT_NONE return vsnprintfRef(_out, _max, _format, _argList); #elif BX_CRT_MSVC int32_t len = -1;