summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Alex Light <allight@google.com> 2021-01-13 15:58:15 +0000
committer Alex Light <allight@google.com> 2021-01-13 15:58:20 +0000
commitc26c640db1911d2fcab7c2b4830993bc254011aa (patch)
treef8164f9b1ea2a9ced1e2f0a302b6d312a21e9414
parent1a0e292b9bb60be76a666ca86046db1492a345d4 (diff)
Minor formatting fixes in handle_scope-inl.h
Change-Id: I76139d78303627b83649b0528ee055901e36f952 Test: None
-rw-r--r--runtime/handle_scope-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/handle_scope-inl.h b/runtime/handle_scope-inl.h
index 0539059f03..cb0333f2d8 100644
--- a/runtime/handle_scope-inl.h
+++ b/runtime/handle_scope-inl.h
@@ -166,6 +166,7 @@ inline void FixedSizeHandleScope<kNumReferences>::SetReferenceToNull(size_t i) {
DCHECK_LT(i, kNumReferences);
GetReferences()[i].Assign(nullptr);
}
+
// Number of references contained within this handle scope.
inline uint32_t BaseHandleScope::NumberOfReferences() const {
return LIKELY(!IsVariableSized())
@@ -271,7 +272,6 @@ inline void VariableSizedHandleScope::VisitRoots(Visitor& visitor) {
}
}
-
} // namespace art
#endif // ART_RUNTIME_HANDLE_SCOPE_INL_H_