From 52db6a92fc0f8ce68cb27040564f019dd0f41e94 Mon Sep 17 00:00:00 2001 From: Charles Dang Date: Sat, 23 Jan 2021 18:23:15 +1100 Subject: [PATCH] Removed explicit STDC99 define on MSVC We compile Lau as C++ code anyway. --- src/global.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/global.hpp b/src/global.hpp index c47fad90d797..a73272ecb0c5 100644 --- a/src/global.hpp +++ b/src/global.hpp @@ -16,9 +16,6 @@ #ifdef _MSC_VER -// Enable C99 support for lua -#define STDC99 - #if _MSVC_LANG > 201402 // fallthrough only supported when MSVC targets later than C++14 #define FALLTHROUGH [[fallthrough]] #else