diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-01-29 16:12:26 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-01-29 16:13:54 +0100 |
commit | 5021f01e240399498a02a72ab1d4be766f38c2ef (patch) | |
tree | fe78b1fae897335198a7728d03d2ab8105067c4b /testtools | |
parent | 363aa5dbb2c223b6cc3a109bd654f39772e310fa (diff) |
testtools: disable MSVC warning C4503
This was disabled by boost/config/compiler/visualc.hpp before commit
110d55cc11033d72bce908e65bbb6a9506ab39e5
Change-Id: Ic4757b0ab74c14fb49d7a0ec502253b667fae033
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/cppobj.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testtools/source/bridgetest/cppobj.cxx b/testtools/source/bridgetest/cppobj.cxx index fca1fe46e77f..3412ae48289d 100644 --- a/testtools/source/bridgetest/cppobj.cxx +++ b/testtools/source/bridgetest/cppobj.cxx @@ -54,6 +54,9 @@ using namespace com::sun::star::lang; using namespace com::sun::star::registry; using namespace test::testtools::bridgetest; +#ifdef _MSC_VER +#pragma warning (disable : 4503) // irrelevant for test code +#endif #define SERVICENAME "com.sun.star.test.bridge.CppTestObject" #define IMPLNAME "com.sun.star.comp.bridge.CppTestObject" |