Remove use of std::to_string in Catch2 for the sake of Android

This commit is contained in:
baldurk
2018-05-07 19:25:16 +01:00
parent 5d0fede646
commit 706b258bd4
+1 -1
View File
@@ -8018,7 +8018,7 @@ namespace Floating {
}
std::string WithinUlpsMatcher::describe() const {
return "is within " + std::to_string(m_ulps) + " ULPs of " + ::Catch::Detail::stringify(m_target) + ((m_type == FloatingPointKind::Float)? "f" : "");
return "is within " + ::Catch::Detail::stringify(m_ulps) + " ULPs of " + ::Catch::Detail::stringify(m_target) + ((m_type == FloatingPointKind::Float)? "f" : "");
}
}// namespace Floating