aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2018-02-08 15:49:25 -0500
committerGravatar Thomas Van Lenten <thomasvl@google.com>2018-02-08 15:51:17 -0500
commit4da7706d74f0b065dabd9daf4720622bb9c2f0f1 (patch)
treec188cc298b705ef441dfe2c6d3d58d12b8ebea07 /src/google/protobuf
parentb8e47830d4679da5fa51fbb4b1f9cbf707b08900 (diff)
Remove stray indent on normal imports.
Diffstat (limited to 'src/google/protobuf')
-rw-r--r--src/google/protobuf/compiler/objectivec/objectivec_helpers.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc b/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
index 336311cc..5727dd56 100644
--- a/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
+++ b/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
@@ -1590,7 +1590,7 @@ void ImportWriter::Print(io::Printer* printer) const {
for (std::vector<string>::const_iterator iter = other_framework_imports_.begin();
iter != other_framework_imports_.end(); ++iter) {
printer->Print(
- " #import <$header$>\n",
+ "#import <$header$>\n",
"header", *iter);
}
@@ -1605,7 +1605,7 @@ void ImportWriter::Print(io::Printer* printer) const {
for (std::vector<string>::const_iterator iter = other_imports_.begin();
iter != other_imports_.end(); ++iter) {
printer->Print(
- " #import \"$header$\"\n",
+ "#import \"$header$\"\n",
"header", *iter);
}
}