From 00533540866d5e12a91143e9325508ceea619b29 Mon Sep 17 00:00:00 2001 From: andoalon <25222137+andoalon@users.noreply.github.com> Date: Mon, 8 Apr 2019 12:41:27 +0200 Subject: [PATCH] Fix typo in 'pi()' --- glm/ext/scalar_constants.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/ext/scalar_constants.inl b/glm/ext/scalar_constants.inl index c075fbc7..f97c9802 100644 --- a/glm/ext/scalar_constants.inl +++ b/glm/ext/scalar_constants.inl @@ -12,7 +12,7 @@ namespace glm template GLM_FUNC_QUALIFIER GLM_CONSTEXPR genType pi() { - GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'epsilon' only accepts floating-point inputs"); + GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'pi' only accepts floating-point inputs"); return static_cast(3.14159265358979323846264338327950288); } } //namespace glm