mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
*** empty log message ***
This commit is contained in:
parent
d727f783a9
commit
5064d9c19c
2 changed files with 4 additions and 4 deletions
|
@ -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)"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue