You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into the following issue when trying to build protobuf 3.5.0 where map::at was used. The map::at method only exists in C++11. As such it cannot compile with a non-C++11 compiler like VS2008.
C:\bld\protobuf_1513642428254\work\protobuf-3.5.0\src\google\protobuf\util\field_mask_util.cc(377) : error C2039: 'at' : is not a member of 'std::map<_Kty,_Ty>'
with
[
_Kty=std::string,
_Ty=google::protobuf::util::`anonymous-namespace'::FieldMaskTree::Node *
]
NMAKE : fatal error U1077: 'C:\PROGRA~2\MICROS~1.0\VC\bin\cl.exe' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\nmake.exe"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\nmake.exe"' : return code '0x2'
Stop.
Ran into the following issue when trying to build
protobuf
3.5.0 wheremap::at
was used. Themap::at
method only exists in C++11. As such it cannot compile with a non-C++11 compiler like VS2008.ref: https://ci.appveyor.com/project/conda-forge/protobuf-feedstock/build/job/o85bad6hfjhvyxvu
The text was updated successfully, but these errors were encountered: