aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/eval/function.h
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-06-01 11:03:44 +0200
committerGitHub <noreply@github.com>2022-06-01 11:03:44 +0200
commit6e65f1d8e061964a0db4a967e5069442fe0e1b74 (patch)
treeeba9839d6b7a58eea85865352af0b5c4bc090fa0 /eval/src/vespa/eval/eval/function.h
parent81d9e9f05aebde3abeb42afb41d1e3245444acf9 (diff)
parentcd0553c9a4df7c0405d1ccb1726cb80762e5f94e (diff)
Merge pull request #22819 from vespa-engine/balder/use-std-to_charsv7.593.6
Balder/use std to chars
Diffstat (limited to 'eval/src/vespa/eval/eval/function.h')
-rw-r--r--eval/src/vespa/eval/eval/function.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/eval/src/vespa/eval/eval/function.h b/eval/src/vespa/eval/eval/function.h
index 61f2c9c2f24..e56118da65e 100644
--- a/eval/src/vespa/eval/eval/function.h
+++ b/eval/src/vespa/eval/eval/function.h
@@ -2,17 +2,11 @@
#pragma once
-#include <cmath>
-#include <memory>
-#include <vespa/vespalib/stllike/string.h>
-#include <vespa/vespalib/util/stringfmt.h>
-#include <map>
#include "basic_nodes.h"
#include "delete_node.h"
#include "value.h"
-namespace vespalib {
-namespace eval {
+namespace vespalib::eval {
enum class PassParams : uint8_t { SEPARATE, ARRAY, LAZY };
@@ -85,5 +79,4 @@ public:
};
};
-} // namespace vespalib::eval
-} // namespace vespalib
+}