End of line fix for gcc 3.x, other misc fixes for 3x

svn path=/trunk/; revision=3539
This commit is contained in:
Steven Edwards 2002-09-24 03:57:59 +00:00
parent 2e1536cfa6
commit 5902c7241e
12 changed files with 13 additions and 12 deletions

View file

@ -129,7 +129,7 @@ public:
_Destroy(begin(), end()); _Destroy(begin(), end());
_Last = _First; _Last = _First;
#else #else
destroy(begin( ), end( )); // destroy(begin( ), end( ));
#ifdef __CYGWIN__ #ifdef __CYGWIN__
_M_finish = _M_start; _M_finish = _M_start;
#endif #endif

View file

@ -30,6 +30,7 @@
///////////////////////////////////////////////////////// /////////////////////////////////////////////////////////
#include "tkeydef.h" #include "tkeydef.h"
#include <string.h>
// This class did not properly release memory before, and a buffer overrun // This class did not properly release memory before, and a buffer overrun
// was apparent in operator=(char*). Fixed. (Paul Brannan Feb. 4, 1999) // was apparent in operator=(char*). Fixed. (Paul Brannan Feb. 4, 1999)