aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2021-03-18 12:30:46 +0000
committerArne Juul <arnej@verizonmedia.com>2021-03-18 12:30:46 +0000
commit399bc7858573e937ee0a4f5cfd3662bcc93528b7 (patch)
tree913f211866820aaeac79505241be3df2cf18e5ac /eval/src
parent8374ae5b5f6c868967485de117bd404e0c73a91c (diff)
make static
Diffstat (limited to 'eval/src')
-rw-r--r--eval/src/vespa/eval/eval/test/eval_fixture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/vespa/eval/eval/test/eval_fixture.h b/eval/src/vespa/eval/eval/test/eval_fixture.h
index 483f306794b..dba26f2b270 100644
--- a/eval/src/vespa/eval/eval/test/eval_fixture.h
+++ b/eval/src/vespa/eval/eval/test/eval_fixture.h
@@ -78,7 +78,7 @@ private:
TensorSpec _result;
template <typename T>
- void find_all(const TensorFunction &node, std::vector<const T *> &list) const {
+ static void find_all(const TensorFunction &node, std::vector<const T *> &list) {
if (auto self = as<T>(node)) {
list.push_back(self);
}