Merge pull request #453 from morinim/issue425

Fixes issue #425
This commit is contained in:
Lee Thomason
2016-07-17 21:33:54 -07:00
committed by GitHub

View File

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