Re: The isspace() Function Is In The std Namespace
"Alexander J. Oss" <[email protected]>
| Newsgroups | gmane.comp.gcc.cgicc.general |
|---|---|
| Message-ID | <000901c1d3d1$da4eafa0$0101a8c0@puter> |
Sorry about the piecemeal reporting... I'll batch up things after this one. But the toupper() calls in CgiUtils.cpp suffer from the same missing namespace as isspace(). ----- Original Message ----- From: "Alexander J. Oss" <[email protected]> To: <[email protected]> Sent: Monday, March 25, 2002 2:26 AM Subject: The isspace() Function Is In The std Namespace ...still monkeying with compilation of cgicc 3.2.1 in BCB 5.0. The call to isspace() in CgiEnvironment.cpp is, I believe, missing the std:: namespace specifier. (See D.5.2 and .3 of the standard.) I think it should read: if(STDNS isspace(*data_iter) == 0) Otherwise I get undefined function errors.