| 45 | // either for invalid values or for when a new enum is added and the code isn't updated |
| 46 | template <> |
| 47 | rdcstr DoStringise(const uint32_t &el) |
| 48 | { |
| 49 | std::ostringstream oss; |
| 50 | oss << el; |
| 51 | return conv(oss.str()); |
| 52 | } |
| 53 | |
| 54 | inline std::ostream &operator<<(std::ostream &os, rdcstr const &str) |
| 55 | { |