diff --git a/libsrc/core/utils.cpp b/libsrc/core/utils.cpp index 062114e6..7eda05f5 100644 --- a/libsrc/core/utils.cpp +++ b/libsrc/core/utils.cpp @@ -17,6 +17,7 @@ namespace ngcore { namespace detail { + /* // see https://github.com/RobotLocomotion/drake/blob/master/common/nice_type_name.cc static const auto demangle_regexes = std::array, 8>{ @@ -39,10 +40,11 @@ namespace ngcore {std::regex("\\bstd::basic_string," "std::allocator>"), "std::string"} }; + */ std::string CleanupDemangledName( std::string s ) { - for(const auto & [r, sub] : demangle_regexes) - s = std::regex_replace (s,r,sub); + //for(const auto & [r, sub] : demangle_regexes) + // s = std::regex_replace (s,r,sub); return s; }