From 60a41e4957b540c8281b94da48db5bf027ccf289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Mon, 26 Sep 2022 20:55:56 -0700 Subject: [PATCH] Cleanup. --- include/bx/inline/typetraits.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bx/inline/typetraits.inl b/include/bx/inline/typetraits.inl index fd7689a..b623796 100644 --- a/include/bx/inline/typetraits.inl +++ b/include/bx/inline/typetraits.inl @@ -142,7 +142,7 @@ namespace bx } template - constexpr bool isEnum() + inline constexpr bool isEnum() { return __is_enum(Ty); } @@ -441,7 +441,7 @@ namespace bx } template - constexpr RemoveReferenceType&& move(Ty&& _a) + inline constexpr RemoveReferenceType&& move(Ty&& _a) { return static_cast&&>(_a); }