]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/spirit/classic/test/scanner_tests.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / spirit / classic / test / scanner_tests.cpp
index 37fe4679ba8ee532b9f59a5e26e5c06a996927c1..69f6950979e5d4a30743fce8f1f6767a741eb0bd 100644 (file)
@@ -23,7 +23,7 @@ using namespace BOOST_SPIRIT_CLASSIC_NS;
 struct to_upper_iter_policy : public iteration_policy {
 
     char filter(char ch) const
-    { return char(toupper(ch)); }
+    { using namespace std; return char(toupper(ch)); }
 };
 
 inline bool test_isspace(char c)