summaryrefslogtreecommitdiffstats
path: root/runtime/gc/accounting/mod_union_table.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 15:54:44 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-18 16:02:33 -0700
commit02c8cc6d1312a2b55533f02f6369dc7c94672f90 (patch)
tree4e4a268e8cb82dcd95f8e29a8169b0396e20b0cc /runtime/gc/accounting/mod_union_table.cc
parent6f485c62b9cfce3ab71020c646ab9f48d9d29d6d (diff)
downloadart-02c8cc6d1312a2b55533f02f6369dc7c94672f90.tar.gz
art-02c8cc6d1312a2b55533f02f6369dc7c94672f90.tar.bz2
art-02c8cc6d1312a2b55533f02f6369dc7c94672f90.zip
Fixing cpplint whitespace/blank_line, whitespace/end_of_line, whitespace/labels, whitespace/semicolon issues
Change-Id: Ide4f8ea608338b3fed528de7582cfeb2011997b6
Diffstat (limited to 'runtime/gc/accounting/mod_union_table.cc')
-rw-r--r--runtime/gc/accounting/mod_union_table.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/gc/accounting/mod_union_table.cc b/runtime/gc/accounting/mod_union_table.cc
index 940ed13080..b33cbceba1 100644
--- a/runtime/gc/accounting/mod_union_table.cc
+++ b/runtime/gc/accounting/mod_union_table.cc
@@ -252,7 +252,7 @@ void ModUnionTableReferenceCache::Verify() {
const byte* card = &*it->first;
if (*card == CardTable::kCardClean) {
std::set<const Object*> reference_set;
- for (It2 itr = it->second.begin(); itr != it->second.end();++itr) {
+ for (It2 itr = it->second.begin(); itr != it->second.end(); ++itr) {
reference_set.insert(*itr);
}
ModUnionCheckReferences visitor(this, reference_set);
@@ -284,7 +284,7 @@ void ModUnionTableReferenceCache::Dump(std::ostream& os) {
uintptr_t end = start + CardTable::kCardSize;
os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "->{";
typedef std::vector<const Object*>::const_iterator It3;
- for (It3 itr = it->second.begin(); itr != it->second.end();++itr) {
+ for (It3 itr = it->second.begin(); itr != it->second.end(); ++itr) {
os << reinterpret_cast<const void*>(*itr) << ",";
}
os << "},";