Skip to content

Commit

Permalink
Merge pull request #8543 from apolcyn/fix_ruby_plugin_build
Browse files Browse the repository at this point in the history
fix type comparison in ruby plugin
  • Loading branch information
apolcyn committed Oct 27, 2016
2 parents 7bf63a2 + 79a1375 commit 6040b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/ruby_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ grpc::string PackageToModule(const grpc::string& name) {
grpc::string result;
result.reserve(name.size());

for (int i = 0; i < name.size(); i++) {
for (grpc::string::size_type i = 0; i < name.size(); i++) {
if (name[i] == '_') {
next_upper = true;
} else {
Expand Down

0 comments on commit 6040b47

Please sign in to comment.