summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-12-24 08:19:52 +0200
committerTor Lillqvist <tml@iki.fi>2012-12-24 21:11:40 +0200
commit4ab80620f0025e165dcd904bad371ac1973c9ae4 (patch)
tree3fd066c1a1401ef26986f7584ef3fff264ea1a98 /cli_ure
parent6791f1d54e8b8f373078ce66885dbc2bfafd9a41 (diff)
WaE: C4564 from MSVS 2010
Change-Id: I675b1cbda896e1a5e15d34f3973e8fcd6ea6c45b
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/climaker/climaker_app.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx
index 949ab220346c..5294d93a97bf 100644
--- a/cli_ure/source/climaker/climaker_app.cxx
+++ b/cli_ure/source/climaker/climaker_app.cxx
@@ -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)