aboutsummaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@yahooinc.com>2022-09-21 09:43:28 +0000
committerHåvard Pettersen <havardpe@yahooinc.com>2022-09-21 11:47:13 +0000
commit95e8f34f7ee1e7df1db7ef52a189245289d51598 (patch)
tree20297f587675316621a4dd943f75923ad85de6cd /eval
parent04b195343586990e6a612d33e98c7fa8603ee0f4 (diff)
use more concepts
Diffstat (limited to 'eval')
-rw-r--r--eval/src/vespa/eval/eval/fast_value.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/vespa/eval/eval/fast_value.hpp b/eval/src/vespa/eval/eval/fast_value.hpp
index b897fb0eaf2..2eaefa3670c 100644
--- a/eval/src/vespa/eval/eval/fast_value.hpp
+++ b/eval/src/vespa/eval/eval/fast_value.hpp
@@ -83,7 +83,7 @@ FastCells<T>::FastCells(size_t initial_capacity)
memory(alloc::Alloc::alloc(elem_size * capacity))
{
static_assert(std::is_trivially_copyable_v<T>);
- static_assert(can_skip_destruction<T>::value);
+ static_assert(can_skip_destruction<T>);
}
template <typename T>