From 706b258bd41989225fc924796bdb591771d569b1 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 7 May 2018 19:25:16 +0100 Subject: [PATCH] Remove use of std::to_string in Catch2 for the sake of Android --- renderdoc/3rdparty/catch/official/catch.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/3rdparty/catch/official/catch.hpp b/renderdoc/3rdparty/catch/official/catch.hpp index c4b0ac9b6..0639cd4db 100644 --- a/renderdoc/3rdparty/catch/official/catch.hpp +++ b/renderdoc/3rdparty/catch/official/catch.hpp @@ -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