Remove stray indent on normal imports.
This commit is contained in:
parent
b8e47830d4
commit
4da7706d74
@ -1590,7 +1590,7 @@ void ImportWriter::Print(io::Printer* printer) const {
|
|||||||
for (std::vector<string>::const_iterator iter = other_framework_imports_.begin();
|
for (std::vector<string>::const_iterator iter = other_framework_imports_.begin();
|
||||||
iter != other_framework_imports_.end(); ++iter) {
|
iter != other_framework_imports_.end(); ++iter) {
|
||||||
printer->Print(
|
printer->Print(
|
||||||
" #import <$header$>\n",
|
"#import <$header$>\n",
|
||||||
"header", *iter);
|
"header", *iter);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1605,7 +1605,7 @@ void ImportWriter::Print(io::Printer* printer) const {
|
|||||||
for (std::vector<string>::const_iterator iter = other_imports_.begin();
|
for (std::vector<string>::const_iterator iter = other_imports_.begin();
|
||||||
iter != other_imports_.end(); ++iter) {
|
iter != other_imports_.end(); ++iter) {
|
||||||
printer->Print(
|
printer->Print(
|
||||||
" #import \"$header$\"\n",
|
"#import \"$header$\"\n",
|
||||||
"header", *iter);
|
"header", *iter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user