[muparser] Remove struct TypeInfo

The STL's facilities are totally sufficient here.
This commit is contained in:
ridiculousfish
2017-12-18 10:56:07 -08:00
parent 364f58fcfa
commit f0de6e0852
3 changed files with 3 additions and 55 deletions

View File

@@ -158,7 +158,7 @@ ValueOrError SelfTest() {
mu::console() << _T( "Running test suite:\n\n");
// Skip the self test if the value type is set to an integer type.
if (mu::TypeInfo<mu::value_type>::IsInteger()) {
if (std::numeric_limits<mu::value_type>::is_integer) {
mu::console()
<< _T( " Test skipped: integer data type are not compatible with the unit test!\n\n");
} else {