diff options
Diffstat (limited to 'minicc.h')
-rw-r--r-- | minicc.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,8 @@ #pragma once +#include <boost/core/demangle.hpp> + #include <cstdlib> #include <filesystem> #include <iostream> @@ -47,3 +49,5 @@ struct PairHashSS { return h0 ^ (h1 << 1); } }; + +std::string demangle(const std::type_info& type); |