summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2023-06-16 15:12:31 +0200
committerTor Egge <Tor.Egge@online.no>2023-06-16 15:12:31 +0200
commitd7528edd89d55cca7196cff5504f85657157bf2f (patch)
tree73836983de05c017c4db8b466a5f4654dedd0ee2
parent496d5e0e014dddb51abdd937809ceead6a3a57b3 (diff)
Adjust identation.
-rw-r--r--vespalib/src/vespa/vespalib/datastore/array_store.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/datastore/array_store.hpp b/vespalib/src/vespa/vespalib/datastore/array_store.hpp
index 1ac66687105..8957e1f60aa 100644
--- a/vespalib/src/vespa/vespalib/datastore/array_store.hpp
+++ b/vespalib/src/vespa/vespalib/datastore/array_store.hpp
@@ -121,7 +121,7 @@ ArrayStore<ElemT, RefT, TypeMapperT>::allocate(size_t array_size)
uint32_t type_id = _mapper.get_type_id(array_size);
if constexpr (has_dynamic_buffer_type) {
if (_mapper.is_dynamic_buffer(type_id)) [[unlikely]] {
- return allocate_dynamic_array<typename TypeMapper::DynamicBufferType>(array_size, type_id);
+ return allocate_dynamic_array<typename TypeMapper::DynamicBufferType>(array_size, type_id);
}
}
return allocate_small_array(type_id);