From 24de0e5fdb8ddd634a61de8de166de174db49734 Mon Sep 17 00:00:00 2001
From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com>
Date: Wed, 3 Apr 2024 17:06:29 -0700
Subject: [PATCH] Update GeneralUtils.cpp (#1528)

same check as the header
---
 dCommon/GeneralUtils.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dCommon/GeneralUtils.cpp b/dCommon/GeneralUtils.cpp
index 27ebfb2c..159cc127 100644
--- a/dCommon/GeneralUtils.cpp
+++ b/dCommon/GeneralUtils.cpp
@@ -320,7 +320,7 @@ std::vector<std::string> GeneralUtils::GetSqlFileNamesFromFolder(const std::stri
 	return sortedFiles;
 }
 
-#ifdef DARKFLAME_PLATFORM_MACOS
+#if !(__GNUC__ >= 11 || _MSC_VER >= 1924)
 
 // MacOS floating-point parse function specializations
 namespace GeneralUtils::details {