diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-06-22 20:41:08 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-06-22 20:41:08 -0700 |
commit | 5867aff943f80f19649c7e6495765af0cb5719b2 (patch) | |
tree | dcf378e6b1c8b7e86fb97f96de77c774b4e5c5b5 /tests/test_xpath_xalan_4.cpp | |
parent | 4b371e10eed49d25bf4240a6aaa321b084e586ea (diff) |
tests: Make using namespace more explicit
Hiding using namespace in common.hpp is somewhat surprising so remove
common.hpp and move using namespace into all .cpp files that need it.
Diffstat (limited to 'tests/test_xpath_xalan_4.cpp')
-rw-r--r-- | tests/test_xpath_xalan_4.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_xpath_xalan_4.cpp b/tests/test_xpath_xalan_4.cpp index c71eaf7..997ffb4 100644 --- a/tests/test_xpath_xalan_4.cpp +++ b/tests/test_xpath_xalan_4.cpp @@ -1,6 +1,8 @@ #ifndef PUGIXML_NO_XPATH -#include "common.hpp" +#include "test.hpp" + +using namespace pugi; TEST_XML(xpath_xalan_position_1, "<doc><a>1</a><a>2</a><a>3</a><a>4</a></doc>") { |