- Fixed compiling on Debian with gcc ( missing includes and std:: )

- Removed c-style include for Borland compiler.
This commit is contained in:
Reijo Tomperi 2008-11-07 20:25:07 +00:00
parent 7569071846
commit 459711ed00
1 changed files with 5 additions and 7 deletions

View File

@ -23,11 +23,9 @@
//---------------------------------------------------------------------------
#include <string>
#include <vector>
#ifdef __BORLANDC__
#include <stdlib.h> // <- free
#endif
#include <vector>
#include <cstdlib>
#include <cstring>
extern std::vector<std::string> Files;
@ -41,11 +39,11 @@ public:
{ FileIndex = 0; _str = 0; linenr = 0; next = 0; }
~TOKEN()
{ free(_str); }
{ std::free(_str); }
void setstr( const char s[] )
{
free(_str);
std::free(_str);
#ifndef _MSC_VER
_str = strdup(s);
#else