In the header file src/google/protobuf/stubs/hash.h The line: # if __GNUC__ == 4 && defined(__GNUC__MINOR__) && __GNUC__MINOR__ <= 1
is incorrect. __GNUC__MINOR__ does not exist. It should be __GNUC_MINOR__ There should be a single underscore(_) between the GNUC and the MINOR and not a double underscore. This is the only occurrence of __GNUC__MINOR__. All the others are __GNUC_MINOR__ -- This email is confidential. If you have received this email in error please notify us immediately by return email and delete this email and any attachments. VIX accepts no liability for any damage caused by this email or any attachments due to viruses, interference, interception, corruption or unauthorised access. -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
