summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-12-22 17:11:45 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-12-29 13:06:00 +0100
commitb4098771b48cde757240e3ac7d4e37928a21635c (patch)
treef67f2dc1a8aabb6634a67ab91f9dec8516e6c543 /eval
parent8ac45c983e2ebfad1e3e9990216d1a7ff16d3ae3 (diff)
Include implementation file too.
Diffstat (limited to 'eval')
-rw-r--r--eval/src/vespa/eval/tensor/tensor_apply.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/eval/src/vespa/eval/tensor/tensor_apply.cpp b/eval/src/vespa/eval/tensor/tensor_apply.cpp
index 7c518d0516f..8f0610fed65 100644
--- a/eval/src/vespa/eval/tensor/tensor_apply.cpp
+++ b/eval/src/vespa/eval/tensor/tensor_apply.cpp
@@ -1,9 +1,9 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "tensor_apply.h"
+#include <vespa/vespalib/stllike/hash_map.hpp>
-namespace vespalib {
-namespace tensor {
+namespace vespalib::tensor {
template <class TensorT>
TensorApply<TensorT>::TensorApply(const TensorImplType &tensor,
@@ -17,5 +17,4 @@ TensorApply<TensorT>::TensorApply(const TensorImplType &tensor,
template class TensorApply<SparseTensor>;
-} // namespace vespalib::tensor
-} // namespace vespalib
+}