Merge branch 'master' into int64support

This commit is contained in:
Lee Thomason
2016-07-17 21:37:39 -07:00
4 changed files with 20 additions and 10 deletions

View File

@@ -1987,10 +1987,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 )
{