From 24af174f5ee96769c1f4d065562431a5f6b73eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 20 Oct 2018 13:20:22 +0200 Subject: [PATCH] Math: minor cleanup. --- src/Magnum/Math/Range.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Math/Range.h b/src/Magnum/Math/Range.h index c07d04382..7f119c56b 100644 --- a/src/Magnum/Math/Range.h +++ b/src/Magnum/Math/Range.h @@ -289,7 +289,7 @@ template class Range { return Range::fromSize(min, size); \ } \ static Type fromCenter(const VectorType& center, const VectorType& halfSize) { \ - return Range::fromCenter(center, halfSize); \ + return Range::fromCenter(center, halfSize); \ } \ \ Type translated(const VectorType& vector) const { \