This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: isalnum not declared


Hi Nikolai,

It looks like your old source uses old C++ (pre-ISO 14882 standard) header files. It probably also does not use compliant namespaces.

Change the header files to compliant ones (e.g., #include <iostream.h> becomes #include <iostream>).

And add in std:: by either "std::ID"prefix in front of each standard namespace identifier (metasyntactically given here as "ID"), or "using std::ID" near the top of the source file, or just carte blanche by "using namespace std;" after the #include specifier block near the top of the source code.

You might also want to change the ".c" extension to ".cpp".

HTH,
--Eljay


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]