From c2ba10d4e493c8f748b1556dc6debc8bc9dfd8b8 Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Thu, 7 Nov 2024 22:56:59 -0800 Subject: [PATCH] App: Reduce BOOST_VERSION workaround to fix boost symbol linker error on Win-Qt5. --- src/App/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Application.cpp b/src/App/Application.cpp index 69a35acfc3..0d89d9ec0e 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -3061,7 +3061,7 @@ void Application::LoadParameters() } } -#if defined(_MSC_VER) && BOOST_VERSION < 108300 +#if defined(_MSC_VER) && BOOST_VERSION < 108200 // fix weird error while linking boost (all versions of VC) // VS2010: https://forum.freecad.org/viewtopic.php?f=4&t=1886&p=12553&hilit=boost%3A%3Afilesystem%3A%3Aget#p12553 namespace boost { namespace program_options { std::string arg="arg"; } }