Opened 18 years ago

Closed 18 years ago

#385 closed Bugs (Fixed)

tools/bcp/bcp_imp.cpp (unknown identifier getline)

Reported by: sqzme Owned by: nobody
Milestone: Component: None
Version: None Severity:
Keywords: Cc:

Description

108:     while (getline(in, line)) {

produces a linker error. Should be:

108:     while (std::getline(in, line)) {

Change History (2)

comment:1 by vawjr, 18 years ago

Logged In: YES 
user_id=5962

In a conforming compiler while (getline(istream&, std::string&)) 
will compile due to Argument Dependent Lookup.

you should _always_ put your compiler in a bug report.

comment:2 by John Maddock, 18 years ago

Status: assignedclosed
Logged In: YES 
user_id=14804

You're quite correct: it'll be fixed in cvs shortly.

Thanks for the report.

John Maddock.
Note: See TracTickets for help on using tickets.