10 lines
174 B
C++
10 lines
174 B
C++
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <map>
|
||
|
|
||
|
struct mangler {
|
||
|
std::map<std::string, int> occurence_count;
|
||
|
|
||
|
std::string new_mangled_name(const std::string& str);
|
||
|
};
|