Kaydet (Commit) 4ab80620 authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Tor Lillqvist

WaE: C4564 from MSVS 2010

Change-Id: I675b1cbda896e1a5e15d34f3973e8fcd6ea6c45b
üst 6791f1d5
......@@ -689,12 +689,20 @@ SAL_IMPLEMENT_MAIN()
if (g_verbose)
{
#if _MSC_VER < 1700
// Bogus: warning C4564: method 'CheckInvalidPathChars' of class 'System::IO::Path' defines unsupported default parameter 'checkAdditional'
#pragma warning (push)
#pragma warning (disable: 4564)
#endif
::System::Console::Write(
"> saving assembly {0}{1}{2}...",
output_dir,
gcnew ::System::String(
::System::IO::Path::DirectorySeparatorChar, 1 ),
output_file );
#if _MSC_VER < 1700
#pragma warning (pop)
#endif
}
assembly_builder->Save( output_file );
if (g_verbose)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment