From a691ca76b0c73b636bbc6b29fb6cbf52bc4e635a Mon Sep 17 00:00:00 2001 From: Brett Date: Sat, 16 Dec 2023 02:40:03 -0500 Subject: [PATCH] hashmap was in a bad place --- include/blt/std/logging.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/blt/std/logging.h b/include/blt/std/logging.h index 6b19ab8..bff50ba 100755 --- a/include/blt/std/logging.h +++ b/include/blt/std/logging.h @@ -18,9 +18,6 @@ namespace blt::logging { - template - using hashmap = std::unordered_map; - enum class log_level { // default @@ -215,6 +212,9 @@ namespace blt::logging #endif #include #include + + template + using hashmap = std::unordered_map; namespace blt::logging {