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
commit 53b0727037
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 )
{