Fix compile error on Cygwin, where int32 is typedefed to long instead of int, and the compiler can't figure out which overload of this method to use in that case.

This commit is contained in:
kenton@google.com 2009-05-06 22:17:46 +00:00
parent e21c5734ec
commit 1d4df6caa4
2 changed files with 4 additions and 0 deletions

View file

@ -145,6 +145,8 @@ DECLARE_STREAM_OPERATOR(const char* , )
DECLARE_STREAM_OPERATOR(char , SimpleCtoa)
DECLARE_STREAM_OPERATOR(int , SimpleItoa)
DECLARE_STREAM_OPERATOR(uint , SimpleItoa)
DECLARE_STREAM_OPERATOR(long , SimpleItoa)
DECLARE_STREAM_OPERATOR(unsigned long, SimpleItoa)
DECLARE_STREAM_OPERATOR(double , SimpleDtoa)
#undef DECLARE_STREAM_OPERATOR

View file

@ -586,6 +586,8 @@ class LIBPROTOBUF_EXPORT LogMessage {
LogMessage& operator<<(char value);
LogMessage& operator<<(int value);
LogMessage& operator<<(uint value);
LogMessage& operator<<(long value);
LogMessage& operator<<(unsigned long value);
LogMessage& operator<<(double value);
private: