cpp-utils
cpp-utils copied to clipboard
:hibiscus: 一些C/C++常用封装例子
Results
2
cpp-utils issues
Sort by
recently updated
recently updated
newest added
void sendHTTP(std::string strurl) { try { std::wstring url = StringToWString(strurl); web::http::client::http_client_config client_config; client_config.set_timeout(std::chrono::seconds(10000)); web::http::client::http_client client(url, client_config); auto task = client.request(web::http::methods::POST); } catch (web::uri_exception) { std::cout
the error info is : "m_s2" : can't find the identifier but, works well in gcc 4.9. I try to fix this compile error, but failed!