diff --git a/lib/bytevector.cc b/lib/bytevector.cc index 8895f30..1acbed3 100644 --- a/lib/bytevector.cc +++ b/lib/bytevector.cc @@ -26,14 +26,12 @@ namespace crucible { size_t ByteVector::size() const { - unique_lock lock(m_mutex); return m_size; } bool ByteVector::empty() const { - unique_lock lock(m_mutex); return !m_ptr || !m_size; }