summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GenericFPURoundMode.cpp
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2023-03-21 10:49:35 -0400
committerLioncash <mai.iam2048@gmail.com>2023-03-21 10:58:13 -0400
commit0888c93d4816bed48024e39002bf4e7899c26d35 (patch)
treeb6f5eb2bbf515559825e419195266e2294b1851b /Source/Core/Common/GenericFPURoundMode.cpp
parentd41751c954e5d6896af8ca93bfac054bc2da1d85 (diff)
Common: Move FPU-related helpers into Common namespace
Makes these utilities' namespace consistent with the majority of the Common library.
Diffstat (limited to 'Source/Core/Common/GenericFPURoundMode.cpp')
-rw-r--r--Source/Core/Common/GenericFPURoundMode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/GenericFPURoundMode.cpp b/Source/Core/Common/GenericFPURoundMode.cpp
index 803a327c4b..2043ba87df 100644
--- a/Source/Core/Common/GenericFPURoundMode.cpp
+++ b/Source/Core/Common/GenericFPURoundMode.cpp
@@ -6,7 +6,7 @@
#include "Common/CommonTypes.h"
// Generic, do nothing
-namespace FPURoundMode
+namespace Common::FPU
{
void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode)
{
@@ -20,4 +20,4 @@ void LoadSIMDState()
void LoadDefaultSIMDState()
{
}
-} // namespace FPURoundMode
+} // namespace Common::FPU