*** empty log message ***

This commit is contained in:
jez_higgins 2003-09-17 11:08:31 +00:00
parent d727f783a9
commit 5064d9c19c
2 changed files with 4 additions and 4 deletions

View file

@ -466,8 +466,8 @@ SOURCE=.\ParserConfig.S
InputPath=.\ParserConfig.S
BuildCmds= \
cl /TC /D USE_XERCES /EP ParserConfig.S > ParserConfig.h \
cl /TC /D USE_XERCES /EP saxlib.S > saxlib.cpp \
cl /TC /D USE_MSXML /EP ParserConfig.S > ParserConfig.h \
cl /TC /D USE_MSXML /EP saxlib.S > saxlib.cpp \
"ParserConfig.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"

View file

@ -163,7 +163,7 @@ public:
{
const Attr& a = attributes_[i];
if(a.uri_ == uri && a.localName_ == localName)
return i;
return static_cast<int>(i);
} // for ...
return -1;
} // getIndex
@ -181,7 +181,7 @@ public:
for(size_t i = 0; i < max; ++i)
{
if(attributes_[i].qName_ == qName)
return i;
return static_cast<int>(i);
}
return -1;
} // getIndex