blog-static/code/compiler/13/mangler.hpp

10 lines
174 B
C++
Raw Normal View History

#pragma once
#include <string>
#include <map>
struct mangler {
std::map<std::string, int> occurence_count;
std::string new_mangled_name(const std::string& str);
};