From 08a8a5cd077ae217b1abeac4b0c8889f2b46d8b2 Mon Sep 17 00:00:00 2001 From: Jan Laupetin Date: Fri, 7 Nov 2025 19:21:41 +0100 Subject: [PATCH] chore: move using namespace out of namespace --- src/ObjLoading/Game/T6/BSP/BSPCreator.cpp | 4 ++-- src/ObjLoading/Game/T6/BSP/LoaderBSP_T6.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ObjLoading/Game/T6/BSP/BSPCreator.cpp b/src/ObjLoading/Game/T6/BSP/BSPCreator.cpp index fdb4a997..6aea7b75 100644 --- a/src/ObjLoading/Game/T6/BSP/BSPCreator.cpp +++ b/src/ObjLoading/Game/T6/BSP/BSPCreator.cpp @@ -4,10 +4,10 @@ #include +using namespace BSP; + namespace { - using namespace BSP; - void addFBXMeshToWorld( ufbx_node* node, std::vector& surfaceVec, std::vector& vertexVec, std::vector& indexVec, bool& hasTangentSpace) { diff --git a/src/ObjLoading/Game/T6/BSP/LoaderBSP_T6.cpp b/src/ObjLoading/Game/T6/BSP/LoaderBSP_T6.cpp index a1399c8e..b64f2a54 100644 --- a/src/ObjLoading/Game/T6/BSP/LoaderBSP_T6.cpp +++ b/src/ObjLoading/Game/T6/BSP/LoaderBSP_T6.cpp @@ -4,10 +4,10 @@ #include "BSPUtil.h" #include "Linker/BSPLinker.h" +using namespace BSP; + namespace { - using namespace BSP; - class BSPLoader final : public IAssetCreator { public: