summaryrefslogtreecommitdiffstats
path: root/runtime/gc/space/large_object_space.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/gc/space/large_object_space.h')
-rw-r--r--runtime/gc/space/large_object_space.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/gc/space/large_object_space.h b/runtime/gc/space/large_object_space.h
index 74d9cca..db845db 100644
--- a/runtime/gc/space/large_object_space.h
+++ b/runtime/gc/space/large_object_space.h
@@ -61,7 +61,7 @@ class LargeObjectSpace : public DiscontinuousSpace, public AllocSpace {
protected:
- LargeObjectSpace(const std::string& name);
+ explicit LargeObjectSpace(const std::string& name);
// Approximate number of bytes which have been allocated into the space.
size_t num_bytes_allocated_;
@@ -91,7 +91,7 @@ class LargeObjectMapSpace : public LargeObjectSpace {
bool Contains(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS;
private:
- LargeObjectMapSpace(const std::string& name);
+ explicit LargeObjectMapSpace(const std::string& name);
virtual ~LargeObjectMapSpace() {}
// Used to ensure mutual exclusion when the allocation spaces data structures are being modified.