forked from boostorg/fusion
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
|
// read a delimiter
|
||||||
string_type const* p = stream_data_t::get(stream);
|
string_type const* p = stream_data_t::get(stream);
|
||||||
using namespace std;
|
std::ws(stream);
|
||||||
ws(stream);
|
|
||||||
|
|
||||||
if (p)
|
if (p)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user