这是一个创建于 2996 天前的主题,其中的信息可能已经有所发展或是发生改变。
其实就是把 std 当成了个标签吧
--- a/source/http_parser.cpp
+++ b/source/http_parser.cpp
@@ -16,7 +16,7 @@ namespace airobot {
return false;
}
- std:string header = std::string(ptr);
+ std::string header = std::string(ptr);
assert(boost::find_first(header, "\r\n\r\n")); //boost algo
header_opts_.clear();
1 条回复 • 2016-09-24 19:13:48 +08:00
|
|
1
onemoo 2016-09-24 19:13:48 +08:00
虽然能编译通过,但至少会有 warning 啊。如果不放过任何一个警告的话,还是能够发现的。
再有,这代码能编译通过也是因为暴露了 std 命名空间中的 string 吧。
|