Skip to content
Snippets Groups Projects
Commit 2d056708 authored by Alexander Polcyn's avatar Alexander Polcyn
Browse files

convert uint to int in generator

parent 0ad5f590
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ grpc::string PackageToModule(const grpc::string& name) { ...@@ -133,7 +133,7 @@ grpc::string PackageToModule(const grpc::string& name) {
grpc::string result; grpc::string result;
result.reserve(name.size()); result.reserve(name.size());
for (uint i = 0; i < name.size(); i++) { for (int i = 0; i < name.size(); i++) {
if (name[i] == '_') { if (name[i] == '_') {
next_upper = true; next_upper = true;
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment