diff options
Diffstat (limited to 'NodeFactory.cpp')
-rw-r--r-- | NodeFactory.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/NodeFactory.cpp b/NodeFactory.cpp index 6105c2d..44e86ae 100644 --- a/NodeFactory.cpp +++ b/NodeFactory.cpp @@ -1,6 +1,4 @@ #include <cassert> -#include <locale> -#include <ranges> #include <algorithm> #include "NodeFactory.h" @@ -26,7 +24,6 @@ void NodeFactory::assign(const char * _type, const Node * node) { // ensure there is only one class that registers a type assert(!has_type(type)); - // printf("map[\"%s\"] = %p\n", type.c_str(), node); map[type] = node; } |