The isspace() Function Is In The std Namespace
"Alexander J. Oss" <[email protected]>
| Newsgroups | gmane.comp.gcc.cgicc.general |
|---|---|
| Message-ID | <002b01c1d3ce$57be5660$0101a8c0@puter> |
...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.