mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-29 12:07:36 +02:00
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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user