Subversion Repositories gelsvn

Rev

Rev 47 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 47 Rev 136
Line 10... Line 10...
10
{
10
{
11
 
11
 
12
		bool Comp(istreambuf_iterator<char>& Itt,const string str)
12
		bool Comp(istreambuf_iterator<char>& Itt,const string str)
13
		{
13
		{
14
		
14
		
15
				int cChar=0;
15
				size_t cChar=0;
16
				bool Ret=true;
16
				bool Ret=true;
17
				while(cChar<str.size() && Ret)
17
				while(cChar<str.size() && Ret)
18
				{
18
				{
19
						Ret=(*Itt==str[cChar]);
19
						Ret=(*Itt==str[cChar]);
20
						++Itt;
20
						++Itt;