Re: isalnum not declared

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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 of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux