summaryrefslogtreecommitdiff
path: root/runtime/atomic_integer.h
diff options
context:
space:
mode:
author Brian Carlstrom <bdc@google.com> 2013-07-17 23:40:20 -0700
committer Brian Carlstrom <bdc@google.com> 2013-07-18 00:12:43 -0700
commit0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c (patch)
tree525a0f99f9381156367c988133b5d51d5dfef6f7 /runtime/atomic_integer.h
parentf69863b3039fc621ff4250e262d2a024d5e79ec8 (diff)
Fix cpplint whitespace/blank_line issues
Change-Id: Ice937e95e23dd622c17054551d4ae4cebd0ef8a2
Diffstat (limited to 'runtime/atomic_integer.h')
-rw-r--r--runtime/atomic_integer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/atomic_integer.h b/runtime/atomic_integer.h
index 117e837bdb..6711722672 100644
--- a/runtime/atomic_integer.h
+++ b/runtime/atomic_integer.h
@@ -70,10 +70,11 @@ class AtomicInteger {
bool success = android_atomic_cas(expected_value, new_value, &value_) == 0;
return success;
}
+
private:
volatile int32_t value_;
};
-}
+} // namespace art
#endif // ART_RUNTIME_ATOMIC_INTEGER_H_