From cbd823aa2154a956e7da4319eecbf7afc10441ae Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 15:47:37 +0500 Subject: Remove include guards --- core/math/constexpr.hh | 4 ---- 1 file changed, 4 deletions(-) (limited to 'core/math/constexpr.hh') diff --git a/core/math/constexpr.hh b/core/math/constexpr.hh index 263a6e8..65dbbbf 100644 --- a/core/math/constexpr.hh +++ b/core/math/constexpr.hh @@ -1,5 +1,3 @@ -#ifndef CORE_MATH_CONSTEXPR_HH -#define CORE_MATH_CONSTEXPR_HH 1 #pragma once #include "core/math/concepts.hh" @@ -198,5 +196,3 @@ constexpr static inline const T math::smoothstep(const T x, const T y, const F a const F t = math::clamp((a - x) / (y - x), F(0), F(1)); return static_cast(t * t * (F(3) - F(2) * t)); } - -#endif // CORE_MATH_CONSTEXPR_HH -- cgit