Skip to content

Commit 488d649

Browse files
committed
Remove useless anonymous namespace
1 parent 37a5b2d commit 488d649

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libjsonexpr/src/eval.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ eval(const ast::node&, const ast::literal& v, const variable_registry&, const fu
2525
expected<json, error>
2626
eval(const ast::node& n, const variable_registry& vreg, const function_registry& freg);
2727

28-
namespace {
2928
std::string_view pop_arg(std::string_view& list) noexcept {
3029
const auto p = list.find_first_of(",");
3130
if (p == list.npos) {
@@ -50,7 +49,6 @@ bool is_match(std::string_view args, std::string_view signature) noexcept {
5049

5150
return args.empty() && signature.empty();
5251
}
53-
} // namespace
5452

5553
expected<json, error> eval(
5654
const ast::node& n,

0 commit comments

Comments
 (0)