summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2021-01-11 15:13:23 +0100
committerTor Egge <Tor.Egge@broadpark.no>2021-01-11 15:13:23 +0100
commitf6862f2a2f08c48d08f0c40dd7dae046ea5574d0 (patch)
tree07e0b3c7837493b7cef356495fbdec9cde7e64b4
parentd9db41186c2732dbb3eec3d0259a6020adc75b48 (diff)
Add typename (needed by gcc 8).
-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 eed10b59bf9..5657c93f53f 100644
--- a/eval/src/vespa/eval/eval/fast_value.hpp
+++ b/eval/src/vespa/eval/eval/fast_value.hpp
@@ -217,7 +217,7 @@ struct FastCells {
template <typename T, bool transient>
struct FastValue final : Value, ValueBuilder<T> {
- using Handles = std::conditional<transient,
+ using Handles = typename std::conditional<transient,
std::vector<string_id>,
SharedStringRepo::Handles>::type;