Commit 4da7706d authored by Thomas Van Lenten's avatar Thomas Van Lenten

Remove stray indent on normal imports.

parent b8e47830
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment