summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2023-06-17 14:42:41 +0200
committerTor Egge <Tor.Egge@online.no>2023-06-17 14:42:41 +0200
commit199848c44c8c6af5a0eb2cfe94519d6037ead9ae (patch)
tree0323319ac63955d57fe9b7abb65c6e19a9db6a37 /vespalib
parent056b844af08214c90ec5226afac58824a828f255 (diff)
Add missing typename in array store header file.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/datastore/array_store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/datastore/array_store.h b/vespalib/src/vespa/vespalib/datastore/array_store.h
index 4a40c94766a..31b06b1f869 100644
--- a/vespalib/src/vespa/vespalib/datastore/array_store.h
+++ b/vespalib/src/vespa/vespalib/datastore/array_store.h
@@ -71,7 +71,7 @@ public:
};
static constexpr bool has_dynamic_buffer_type = check_dynamic_buffer_type_member<TypeMapper>::value;
- using DynamicBufferTypeVector = check_dynamic_buffer_type_member<TypeMapper>::vector_type;
+ using DynamicBufferTypeVector = typename check_dynamic_buffer_type_member<TypeMapper>::vector_type;
private:
uint32_t _largeArrayTypeId;
uint32_t _maxSmallArrayTypeId;