* tparse/tparse.h: Fix 2 warnings revealed by gcc -Wall.

git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@1061 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/tags/1.0.0-rc1
dionisos 2005-05-01 13:58:06 +00:00
parent 55889fd691
commit a9f8e7a802
1 changed files with 4 additions and 0 deletions

View File

@ -136,10 +136,14 @@ class rcstoken
rcstoken& operator+=(const char b)
{
append(b);
return *this;
};
rcstoken& operator+=(rcstoken& token)
{
append(token);
return *this;
};
int operator==(const char *b)
{