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/config/number.hh | 4 ---- 1 file changed, 4 deletions(-) (limited to 'core/config/number.hh') diff --git a/core/config/number.hh b/core/config/number.hh index 3455910..45d4773 100644 --- a/core/config/number.hh +++ b/core/config/number.hh @@ -1,5 +1,3 @@ -#ifndef CORE_CONFIG_NUMBER_HH -#define CORE_CONFIG_NUMBER_HH 1 #pragma once #include "core/config/ivalue.hh" @@ -130,5 +128,3 @@ inline void config::Number::set_limits(T min_value, T max_value) m_value = std::clamp(m_value, m_min_value, m_max_value); m_string = std::to_string(m_value); } - -#endif // CORE_CONFIG_NUMBER_HH -- cgit