mirror of https://github.com/AxioDL/tinyxml2.git
Fixes issue #425
This commit is contained in:
parent
d7e5f47524
commit
0f45b2422f
|
@ -1932,10 +1932,12 @@ struct LongFitsIntoSizeTMinusOne {
|
||||||
};
|
};
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
bool LongFitsIntoSizeTMinusOne<false>::Fits( unsigned long /*value*/ )
|
struct LongFitsIntoSizeTMinusOne<false> {
|
||||||
{
|
static bool Fits( unsigned long )
|
||||||
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
XMLError XMLDocument::LoadFile( FILE* fp )
|
XMLError XMLDocument::LoadFile( FILE* fp )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue