summaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2011-02-16 20:00:54 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2011-02-16 20:00:54 +0000
commit5f318e056ef670ca8f16fc984f0c80c79f720b94 (patch)
tree028c03d08f9a5ab0ea39c3316ee05e1ae5b3e158 /tests/main.cpp
parentc21c682c4e79564b1117c4984f88c514ac92ee91 (diff)
tests: Fixed C++/CLI compilation warning
git-svn-id: http://pugixml.googlecode.com/svn/trunk@807 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index f974d0c..67fa190 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -72,6 +72,7 @@ static bool run_test(test_runner* test)
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable: 4611) // interaction between _setjmp and C++ object destruction is non-portable
+# pragma warning(disable: 4793) // function compiled as native: presence of '_setjmp' makes a function unmanaged
#endif
volatile int result = setjmp(test_runner::_failure_buffer);