summaryrefslogtreecommitdiff
path: root/Shell/AST.cpp
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-10-01 18:13:01 +0330
committerAndreas Kling <kling@serenityos.org>2020-10-04 23:12:28 +0200
commitf164b808b5a6ed69f6fd0aea8ee0c88f4d377a24 (patch)
tree180ae499ba8787543d8921d3ad7b535a3518696b /Shell/AST.cpp
parent34039d663925670e011db2cc6e96a120a667308a (diff)
downloadserenity-f164b808b5a6ed69f6fd0aea8ee0c88f4d377a24.zip
Shell: Move everything to the Shell namespace
Also provide a basic default-constructor.
Diffstat (limited to 'Shell/AST.cpp')
-rw-r--r--Shell/AST.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Shell/AST.cpp b/Shell/AST.cpp
index c66328e971..1ec8e1411f 100644
--- a/Shell/AST.cpp
+++ b/Shell/AST.cpp
@@ -37,7 +37,7 @@
//#define EXECUTE_DEBUG
-namespace AST {
+namespace Shell::AST {
template<typename T, typename... Args>
static inline NonnullRefPtr<T> create(Args... args)