From 4da7706d74f0b065dabd9daf4720622bb9c2f0f1 Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Thu, 8 Feb 2018 15:49:25 -0500 Subject: Remove stray indent on normal imports. --- src/google/protobuf/compiler/objectivec/objectivec_helpers.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/google/protobuf') 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::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::const_iterator iter = other_imports_.begin(); iter != other_imports_.end(); ++iter) { printer->Print( - " #import \"$header$\"\n", + "#import \"$header$\"\n", "header", *iter); } } -- cgit v1.2.3