diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-25 17:41:34 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-25 17:41:34 +0000 |
commit | d1837111abd945d0e6c4e5c7d213f93030388520 (patch) | |
tree | 156a1131da2d7b18cf7952c06af470bab4bddd67 /STL | |
parent | 0c88c01e22f1ae910d06d48b802d3bd1e21ca60a (diff) | |
download | ATCD-d1837111abd945d0e6c4e5c7d213f93030388520.tar.gz |
*** empty log message ***
Diffstat (limited to 'STL')
-rw-r--r-- | STL/ChangeLog | 4 | ||||
-rw-r--r-- | STL/bstring.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/STL/ChangeLog b/STL/ChangeLog index 4a897ce9208..095d52d0cb5 100644 --- a/STL/ChangeLog +++ b/STL/ChangeLog @@ -1,3 +1,7 @@ +Sat Jan 25 11:34:56 1997 Irfan Pyarali <irfan@flamenco.cs.wustl.edu> + + * STL/bstring.h: Fixed typo. + Mon Jan 20 10:04:11 1997 David L. Levine <levine@cs.wustl.edu> * algobase.h: wrapped min/max templates with #if ! defined (VXWORKS) diff --git a/STL/bstring.h b/STL/bstring.h index 3122da80641..a5565c73770 100644 --- a/STL/bstring.h +++ b/STL/bstring.h @@ -2495,7 +2495,7 @@ operator>> (istream& i, basic_string<charT>& s) _THROW_ALLOC_LENGTH #if ! defined (ghs) // GreenHills 1.8.8 doesn't like this template specialization . . . template basic_string<char>; -#endf /* ghs */ +#endif /* ghs */ typedef basic_string<char> cstring; typedef basic_string<char> string; //typedef basic_string<wchar_t> wstring; |