mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-11 21:10:19 +01:00
Final set of fixes for floating matchers approvals
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
#include "catch_interfaces_config.h"
|
||||
#include "catch_context.h"
|
||||
|
||||
#include <cmath>
|
||||
#include <iomanip>
|
||||
|
||||
namespace Catch {
|
||||
@@ -63,6 +64,10 @@ namespace Detail {
|
||||
|
||||
template<typename T>
|
||||
std::string fpToString( T value, int precision ) {
|
||||
if (std::isnan(value)) {
|
||||
return "nan";
|
||||
}
|
||||
|
||||
ReusableStringStream rss;
|
||||
rss << std::setprecision( precision )
|
||||
<< std::fixed
|
||||
|
||||
Reference in New Issue
Block a user