[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: The isspace() Function Is In The std Namespace
From: |
Alexander J. Oss |
Subject: |
Re: The isspace() Function Is In The std Namespace |
Date: |
Mon, 25 Mar 2002 02:51:20 -0500 |
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" <address@hidden>
To: <address@hidden>
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.