I have this messave in proto.
message GetUsersNickIdRequest {
repeated string usernames = 1;
repeated uint64 user_ids = 2;
}
Here I am using it in Qt project.
GetUsersNickIdRequest request;
for (int i = 0; i < usernames.count(); i++ )
request.add_usernames(usernames[i].toStdString());
And when I run in debug qt creator always stops on this.
inline void GetUsersNickIdRequest::add_usernames(const ::std::string&
value) {
usernames_.Add()->assign(value);
}
As if it had a breakpoint, but there is no one.
What is the problem? How to solve it?
--
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.