manip.hpp: Do not use "using namespace std;"

Changed "using namespace std;  ws()" into "std::ws()" to avoid ambiguities with a possible "::ws" namespace.
This commit is contained in:
fiesh
2015-11-23 17:21:59 +01:00
parent ee718b363f
commit 8767d374ea

View File

@ -110,8 +110,7 @@ namespace boost { namespace fusion
{
// read a delimiter
string_type const* p = stream_data_t::get(stream);
using namespace std;
ws(stream);
std::ws(stream);
if (p)
{