| 83 | } |
| 84 | |
| 85 | string UrlEncodeToString(const std::string& in, bool hive_compat) { |
| 86 | string ret; |
| 87 | UrlEncode(in, &ret, hive_compat); |
| 88 | return ret; |
| 89 | } |
| 90 | |
| 91 | // Adapted from |
| 92 | // http://www.boost.org/doc/libs/1_40_0/doc/html/boost_asio/ |
nothing calls this directly
no test coverage detected