From d8fdd5256b8cee0d9a6b8cc74ebe4de56a5a966d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20St=C3=B6ggl?= Date: Wed, 3 Feb 2021 20:07:04 +0100 Subject: [PATCH] [TTALib] Get rid of compiler warnings Fixes the following compiler warnings: - Win32, x64: cl : Command line warning D9035: option 'Ze' has been deprecated and will be removed in a future release - x64: cl : Command line warning D9002: ignoring unknown option '/arch:SSE' - Background info: The /Ze option is deprecated because its behavior is on by default. https://docs.microsoft.com/en-us/visualstudio/msbuild/cl-task SSE is only relevant for x86 https://docs.microsoft.com/en-us/cpp/build/reference/arch-x86 --- ttalib-1.1/TTALib.vcxproj | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ttalib-1.1/TTALib.vcxproj b/ttalib-1.1/TTALib.vcxproj index 440bc43..d4de949 100644 --- a/ttalib-1.1/TTALib.vcxproj +++ b/ttalib-1.1/TTALib.vcxproj @@ -95,7 +95,6 @@ - /Ze %(AdditionalOptions) Disabled WIN32;_DEBUG;%(PreprocessorDefinitions) false @@ -114,7 +113,6 @@ X64 - /Ze %(AdditionalOptions) Disabled WIN32;_DEBUG;%(PreprocessorDefinitions) false @@ -130,7 +128,6 @@ - /Ze %(AdditionalOptions) MaxSpeed OnlyExplicitInline WIN32;NDEBUG;%(PreprocessorDefinitions) @@ -146,7 +143,6 @@ X64 - /Ze %(AdditionalOptions) Full AnySuitable true @@ -158,7 +154,6 @@ MultiThreadedDLL false false - StreamingSIMDExtensions Fast Level4