| 357 | } |
| 358 | |
| 359 | std::string replace(std::string input, const std::string& before, const std::string& after) { |
| 360 | boost::replace_all(input, before, after); |
| 361 | return input; |
| 362 | } |
| 363 | |
| 364 | template <typename Value> |
| 365 | std::string number_formatter(const Value value, const int base) { |
no outgoing calls