summaryrefslogtreecommitdiffstats
path: root/core/config/number.hh
diff options
context:
space:
mode:
Diffstat (limited to 'core/config/number.hh')
-rw-r--r--core/config/number.hh4
1 files changed, 0 insertions, 4 deletions
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<T>::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