From 3000cb8290100ca6196403a862d918c00fab729e Mon Sep 17 00:00:00 2001 From: mitchell Date: Mon, 6 Jan 2020 20:29:15 -0500 Subject: Fixed runtime error introduced by r7925 (changset 58e9ef4392cd). --- include/Compat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/Compat.h b/include/Compat.h index b4a9437c2..b6d41e591 100644 --- a/include/Compat.h +++ b/include/Compat.h @@ -23,13 +23,13 @@ inline constexpr T clamp(T val, T minVal, T maxVal) { // std::round (not present on older MacOSX SDKs) template T round(T arg) { - return round(arg); + return ::round(arg); } // std::lround (not present on older MacOSX SDKs) template long lround(T arg) { - return lround(arg); + return ::lround(arg); } // std::make_unique -- cgit v1.2.3