Fixes issue #425

This commit is contained in:
Manlio Morini 2016-07-11 12:14:59 +02:00
parent d7e5f47524
commit 0f45b2422f
1 changed files with 6 additions and 4 deletions

View File

@ -1932,10 +1932,12 @@ struct LongFitsIntoSizeTMinusOne {
};
template <>
bool LongFitsIntoSizeTMinusOne<false>::Fits( unsigned long /*value*/ )
{
return true;
}
struct LongFitsIntoSizeTMinusOne<false> {
static bool Fits( unsigned long )
{
return true;
}
};
XMLError XMLDocument::LoadFile( FILE* fp )
{