ReClass.NET icon indicating copy to clipboard operation
ReClass.NET copied to clipboard

Error when compiling

Open JuicySoup opened this issue 4 years ago • 1 comments

Downloaded repo, opened solution in vs19 and upgraded to latest toolset. When compiling I get this error:

Severity	Code	Description	Project	File	Line	Suppression State
Error	C1189	#error:  The <experimental/filesystem> header providing std::experimental::filesystem is deprecated by Microsoft and will be REMOVED. It is superseded by the C++17 <filesystem> header providing std::filesystem. You can define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING to acknowledge that you have received this warning.	NativeCore	C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\experimental\filesystem	30	

JuicySoup avatar Jan 06 '22 18:01 JuicySoup

in Project Settings -> C/C++ -> Preprocessor -> Preprocessor definitions

add

_SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING

to resolve it.

yokee99 avatar Jan 08 '22 04:01 yokee99