| 10 | clang? */ |
| 11 | |
| 12 | inline std::string pretty_type(const char *raw) |
| 13 | { |
| 14 | ostringstream os; |
| 15 | os << raw; |
| 16 | string s = os.str(); |
| 17 | while(s[0] <= '9') |
| 18 | s.erase(s.begin()); |
| 19 | return s; |
| 20 | } |
| 21 | |
| 22 | inline std::string pretty_type(struct prod *p) |
| 23 | { |