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
The following .proto definition generates code that will not compile
package Foo;
message Bar {
repeated string names = 1;
}
Looks like the code is generated the same style of Array code as would work for an int[] but since NSString is not a value type this does not work correctly.
I could dig in a bit but I suspect the original authors have greater and faster context.