diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-10-01 18:13:01 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-04 23:12:28 +0200 |
commit | f164b808b5a6ed69f6fd0aea8ee0c88f4d377a24 (patch) | |
tree | 180ae499ba8787543d8921d3ad7b535a3518696b /Shell/AST.cpp | |
parent | 34039d663925670e011db2cc6e96a120a667308a (diff) | |
download | serenity-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.cpp | 2 |
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) |