Commit 2429e3a0 authored by kenton@google.com's avatar kenton@google.com

Monty Taylor claims this helps the drizzle compile for some reason.

parent 0225b352
...@@ -97,11 +97,13 @@ struct ExtensionInfo { ...@@ -97,11 +97,13 @@ struct ExtensionInfo {
bool is_repeated; bool is_repeated;
bool is_packed; bool is_packed;
struct EnumValidityCheck {
EnumValidityFuncWithArg* func;
const void* arg;
};
union { union {
struct { EnumValidityCheck enum_validity_check;
EnumValidityFuncWithArg* func;
const void* arg;
} enum_validity_check;
const MessageLite* message_prototype; const MessageLite* message_prototype;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment