From fa836cab8d3a300e196c7f1b0990098567f7cd62 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 3 Nov 2014 23:14:11 +0100 Subject: odk: disable MSVC warning C4996 Change-Id: I6c2dab3b427121366bb2d39b95262311286ae371 --- odk/qa/checkapi/checkapi.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'odk/qa') diff --git a/odk/qa/checkapi/checkapi.cxx b/odk/qa/checkapi/checkapi.cxx index 29ec390327ec..67e11c6b2ea6 100644 --- a/odk/qa/checkapi/checkapi.cxx +++ b/odk/qa/checkapi/checkapi.cxx @@ -29,6 +29,11 @@ // This module contains no tests, this is for the build system. #include +#ifdef _MSC_VER +// deprecation warnings do not matter here +#pragma warning (disable : 4996) +#endif + #include "allheaders.hxx" CPPUNIT_PLUGIN_IMPLEMENT(); -- cgit