hashmap was in a bad place

v1
Brett 2023-12-16 02:40:03 -05:00
parent 4de984bdb8
commit a691ca76b0
1 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,6 @@
namespace blt::logging
{
template<typename K, typename V>
using hashmap = std::unordered_map<K, V>;
enum class log_level
{
// default
@ -216,6 +213,9 @@ namespace blt::logging
#include <ios>
#include <fstream>
template<typename K, typename V>
using hashmap = std::unordered_map<K, V>;
namespace blt::logging {
/**