diff options
Diffstat (limited to 'libartbase/base/bit_vector.h')
-rw-r--r-- | libartbase/base/bit_vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libartbase/base/bit_vector.h b/libartbase/base/bit_vector.h index 0c735cc58a..071577bac1 100644 --- a/libartbase/base/bit_vector.h +++ b/libartbase/base/bit_vector.h @@ -109,7 +109,7 @@ class BitVector { BitVector(const BitVector& other) = delete; BitVector& operator=(const BitVector& other) = delete; - BitVector(BitVector&& other) + BitVector(BitVector&& other) noexcept : storage_(other.storage_), storage_size_(other.storage_size_), allocator_(other.allocator_), |