diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-11-08 15:57:04 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-11-08 15:57:04 +0000 |
commit | c1b2ecc79902ea89bb9a0296f2d3ddcb7591800a (patch) | |
tree | 6a2ea18aba1825775c32582354f6c5791fdc0184 /tests | |
parent | f5389e364aa036d4237ee5c69098dc0e3ed513c6 (diff) |
tests: MSVC warning fixes
git-svn-id: http://pugixml.googlecode.com/svn/trunk@228 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests')
-rw-r--r-- | tests/helpers.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helpers.hpp b/tests/helpers.hpp index 1481ccd..e7ed873 100644 --- a/tests/helpers.hpp +++ b/tests/helpers.hpp @@ -17,8 +17,8 @@ template <typename T> static void generic_bool_ops_test(const T& obj) CHECK(!b1);
CHECK(b2);
- CHECK(obj && true);
- CHECK(obj || false);
+ CHECK(obj && b2);
+ CHECK(obj || b2);
CHECK(obj && obj);
CHECK(obj || obj);
}
|