diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-25 21:40:11 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-25 21:40:11 +0000 |
commit | 0e1b238faec0980150c202e81b2bf8f63ba2ca8e (patch) | |
tree | f365d16fe755e44799dd649666ab47087900d2be /tests/helpers.hpp | |
parent | 75a0d2379aee05e59f0829b04240b9307469e727 (diff) |
tests: Replaced #pragma once with header guards
git-svn-id: http://pugixml.googlecode.com/svn/trunk@450 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/helpers.hpp')
-rw-r--r-- | tests/helpers.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/helpers.hpp b/tests/helpers.hpp index 6648806..b160a85 100644 --- a/tests/helpers.hpp +++ b/tests/helpers.hpp @@ -1,4 +1,5 @@ -#pragma once
+#ifndef HEADER_TEST_HELPERS_HPP
+#define HEADER_TEST_HELPERS_HPP
#include "common.hpp"
@@ -93,3 +94,4 @@ template <typename T> static void generic_rel_ops_test(T obj1, T obj2) CHECK(!(obj1 >= obj2));
}
+#endif
|