Merge pull request #6324 from practicalswift/cpp-gardening

[gardening] C++ gardening: Terminate namespaces, fix argument names, …
This commit is contained in:
Michael Gottesman
2016-12-16 23:30:33 -08:00
committed by GitHub
165 changed files with 508 additions and 505 deletions

View File

@@ -288,7 +288,7 @@ namespace {
explicit PrettyModuleFileDeserialization(const ModuleFile &file)
: File(file) {}
virtual void print(raw_ostream &os) const override {
void print(raw_ostream &os) const override {
os << "While reading from " << File.getModuleFilename() << "\n";
}
};