summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-01-11 15:28:45 +0100
committerGitHub <noreply@github.com>2021-01-11 15:28:45 +0100
commitf251b086e54ea404a3e8b379d5c784c50c08a095 (patch)
treeee0f587c1a70d1f5258d63f1cf4254abf0aad917
parent3a5036d00efecc3c4cde77ccf3437b6b21e972c8 (diff)
parentf6862f2a2f08c48d08f0c40dd7dae046ea5574d0 (diff)
Merge pull request #15990 from vespa-engine/toregge/use-typename-to-support-older-versions-of-gcc
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;