Drop the support of VS2013

This commit is contained in:
Chunting Gu
2019-03-08 14:14:33 +08:00
parent 3647407b8b
commit 0db366bfe0
17 changed files with 39 additions and 130 deletions
+9 -2
View File
@@ -1,10 +1,17 @@
#include "webcc/globals.h"
#include "boost/algorithm/string.hpp"
#include "webcc/version.h"
namespace webcc {
// -----------------------------------------------------------------------------
namespace http {
const std::string& UserAgent() {
static std::string s_user_agent = std::string("Webcc/") + WEBCC_VERSION;
return s_user_agent;
}
} // namespace http
const char* DescribeError(Error error) {
switch (error) {