aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2016-12-27 11:00:46 -0800
committerGitHub <noreply@github.com>2016-12-27 11:00:46 -0800
commit5f65ee6ac7e1c60dc4bdffa3c4247b3f0042e4fd (patch)
tree5ee004de56402ceb2df63c66464352b36eacdf74 /src
parentf52e188fe465c10377f5a2b5765f481cb6fcb2f4 (diff)
parent05b019aedcc35632e2abdd718add60f762967882 (diff)
downloadprotobuf-5f65ee6ac7e1c60dc4bdffa3c4247b3f0042e4fd.tar.gz
protobuf-5f65ee6ac7e1c60dc4bdffa3c4247b3f0042e4fd.tar.bz2
protobuf-5f65ee6ac7e1c60dc4bdffa3c4247b3f0042e4fd.zip
Merge pull request #2542 from jbrianceau/fix-embed-cc-warning
Fix warning in compiler/js/embed.cc
Diffstat (limited to 'src')
-rw-r--r--src/google/protobuf/compiler/js/embed.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/js/embed.cc b/src/google/protobuf/compiler/js/embed.cc
index d04fea2e..a725b62e 100644
--- a/src/google/protobuf/compiler/js/embed.cc
+++ b/src/google/protobuf/compiler/js/embed.cc
@@ -48,7 +48,7 @@ static char ToDecimalDigit(int num) {
static std::string CEscape(const std::string& str) {
std::string dest;
- for (int i = 0; i < str.size(); ++i) {
+ for (size_t i = 0; i < str.size(); ++i) {
unsigned char ch = str[i];
switch (ch) {
case '\n': dest += "\\n"; break;