Comment #3 on issue 344 by [email protected]: Compile Error in Visual
Studio 2010 and 2011 (developer preview)
http://code.google.com/p/protobuf/issues/detail?id=344
Error 1 is easily fixed by replacing "int" with "size_t" in the definition
of tuple_element:
template <size_t k, class Tuple>
struct tuple_element {
To get rid of other errors I had to disable tuples in tests at all:
#define GTEST_HAS_TR1_TUPLE 0
in gtest-port.h (by the way, correct the typo in this file: "with be"
-> "will be" :) ).
--
You received this message because you are subscribed to the Google Groups "Protocol
Buffers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/protobuf?hl=en.