问题描述:
今天用vs2013编译protobuf 2.4.1 报错:
错误 3 error C3861: “max”: 找不到标识符 f:\google\protobuf\protobuf-2.4.1\src\google\protobuf\io\zero_copy_stream_impl_lite.cc 168 1 libprotobuf
错误 1 error C3861: “min”: 找不到标识符 f:\google\protobuf\protobuf-2.4.1\src\google\protobuf\io\zero_copy_stream_impl_lite.cc 68 1 libprotobuf
解决办法:
在包含头文件处加上
#include<algorithm>
编译通过。.................