From b38866b55ef0aa4bb9c408ea4aa9978f38a2a619 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sun, 2 Nov 2025 07:14:39 +0100 Subject: [PATCH] namespace fix --- implementations/Crafter.Thread-ThreadPool.cpp | 2 +- interfaces/Crafter.Thread-ThreadPool.cppm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/implementations/Crafter.Thread-ThreadPool.cpp b/implementations/Crafter.Thread-ThreadPool.cpp index 1507dcf..1eaf638 100755 --- a/implementations/Crafter.Thread-ThreadPool.cpp +++ b/implementations/Crafter.Thread-ThreadPool.cpp @@ -22,7 +22,7 @@ module Crafter.Thread:ThreadPool_impl; import std; import :ThreadPool; -using namespace Crafter::Thread; +using namespace Crafter; void ThreadPool::Start(int maxThreads) diff --git a/interfaces/Crafter.Thread-ThreadPool.cppm b/interfaces/Crafter.Thread-ThreadPool.cppm index 066c2a2..59be5c7 100755 --- a/interfaces/Crafter.Thread-ThreadPool.cppm +++ b/interfaces/Crafter.Thread-ThreadPool.cppm @@ -21,7 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA export module Crafter.Thread:ThreadPool; import std; -namespace Thread { +namespace Crafter { struct ThreadStorage { std::vector> tasks; std::vector> buffer;