From cef49d4a396866fb5eef9ffa7a5a54b3bc0cb8af Mon Sep 17 00:00:00 2001 From: batsumaru <> Date: Sun, 9 Aug 2026 17:42:32 +0900 Subject: Fixed namespace inconsistency --- include/fixed_point.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fixed_point.h b/include/fixed_point.h index 9df6376..385ccc2 100644 --- a/include/fixed_point.h +++ b/include/fixed_point.h @@ -5,8 +5,8 @@ #include struct fp_t { - static constexpr int32_t Q = 16; - static constexpr int32_t K = 1 << (Q - 1); + static constexpr std::int32_t Q = 16; + static constexpr std::int32_t K = 1 << (Q - 1); std::int32_t raw; static constexpr fp_t from_raw(std::int32_t r) { return fp_t{r}; } -- cgit v1.3