diff --git a/Tests/fixedpoint.cpp b/Tests/fixedpoint.cpp index 6278c97..7fbddf9 100644 --- a/Tests/fixedpoint.cpp +++ b/Tests/fixedpoint.cpp @@ -6,7 +6,7 @@ #include "utility_fixedpoint.hpp" -using FP15 = Peripherals::FixedPoint; +using FP15 = Utility::FixedPoint; TEST_CASE("FP constructors work appropriately.", "[utility],[fixed point]") { @@ -172,7 +172,7 @@ TEST_CASE("FP arithmetic operators work appropriately.", "[utility],[fixed point TEMPLATE_TEST_CASE("FP converting back to integral values works appropriately.", "[utility],[fixed point]", std::int8_t, std::int16_t, std::int32_t) { - using FP = Peripherals::FixedPoint; + using FP = Utility::FixedPoint; FP fp(4); diff --git a/Utility/Inc/utility_fixedpoint.hpp b/Utility/Inc/utility_fixedpoint.hpp index 785bb02..8794dac 100644 --- a/Utility/Inc/utility_fixedpoint.hpp +++ b/Utility/Inc/utility_fixedpoint.hpp @@ -9,7 +9,7 @@ #include #include -namespace Peripherals +namespace Utility { namespace Details @@ -301,6 +301,6 @@ using Q7 = FixedPoint; using Q15 = FixedPoint; using Q31 = FixedPoint; -}// namespace Peripherals +}// namespace Utility #endif//SKULLC_UTILITY_FIXEDPOINT_HPP_