| 805 | |
| 806 | template <typename T> |
| 807 | static inline std::string toString(const T &t) { |
| 808 | std::stringstream ss; |
| 809 | ss << t; |
| 810 | return ss.str(); |
| 811 | } |
| 812 | |
| 813 | static inline std::string removeUtf8Bom(const std::string& input) { |
| 814 | // UTF-8 BOM = 0xEF,0xBB,0xBF |