diff options
author | Elliott Hughes <enh@google.com> | 2011-10-17 18:56:41 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2011-10-17 20:26:54 -0700 |
commit | 362f9bc807169bcfc8761dde067bbfb79b5ad0fd (patch) | |
tree | 100689aa13a39913b43cb12780ba472897cd665a /src/oat_file.cc | |
parent | fc86162ce2a3467acb690e18cc8bd9b3daafc606 (diff) | |
download | art-362f9bc807169bcfc8761dde067bbfb79b5ad0fd.zip art-362f9bc807169bcfc8761dde067bbfb79b5ad0fd.tar.gz art-362f9bc807169bcfc8761dde067bbfb79b5ad0fd.tar.bz2 |
Fix cpplint's whitespace warnings.
Change-Id: I16b69d773e59b49e8e30227b5aa5cb1959a8930f
Diffstat (limited to 'src/oat_file.cc')
-rw-r--r-- | src/oat_file.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oat_file.cc b/src/oat_file.cc index 23eae7c..6e8c60f 100644 --- a/src/oat_file.cc +++ b/src/oat_file.cc @@ -145,7 +145,7 @@ const OatFile::OatDexFile* OatFile::GetOatDexFile(const std::string& dex_file_lo std::vector<const OatFile::OatDexFile*> OatFile::GetOatDexFiles() const { std::vector<const OatFile::OatDexFile*> result; - for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it ) { + for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) { result.push_back(it->second); } return result; |