From d0e158ca07348231e235d017733ef1878ad89613 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 22 Apr 2014 16:10:10 +0200 Subject: [PATCH] fix unpacking of geometry for shared memory --- DataStructures/SharedMemoryVectorWrapper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/SharedMemoryVectorWrapper.h b/DataStructures/SharedMemoryVectorWrapper.h index 6a42c836d..8049abae5 100644 --- a/DataStructures/SharedMemoryVectorWrapper.h +++ b/DataStructures/SharedMemoryVectorWrapper.h @@ -165,7 +165,7 @@ public: // } bool at(const std::size_t index) const { - BOOST_ASSERT_MSG(index < m_size, "invalid size"); + // BOOST_ASSERT_MSG(index < m_size, "invalid size"); const unsigned bucket = index / 32; const unsigned offset = index % 32; return m_ptr[bucket] & (1 << offset);