1
0
mirror of https://github.com/leethomason/tinyxml2.git synced 2026-07-28 22:52:59 +04:00

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
+6 -4
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 )
{