diff options
author | Enrico Granata <egranata@apple.com> | 2016-03-08 21:23:30 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-03-08 21:23:30 +0000 |
commit | 937631cfdf84f6851ca5c090cc4839edad4835ca (patch) | |
tree | a02195c679aa103b5649d328e356b3fbe6b2e305 /lldb/source/Interpreter/CommandAlias.cpp | |
parent | e02f4dfb9e5d652fa89a79dc9479fd75752adce9 (diff) | |
download | bcm5719-llvm-937631cfdf84f6851ca5c090cc4839edad4835ca.tar.gz bcm5719-llvm-937631cfdf84f6851ca5c090cc4839edad4835ca.zip |
Move CommandAlias to its own file; also
Store std::unique_ptr<CommandAlias> instead of instances
llvm-svn: 262958
Diffstat (limited to 'lldb/source/Interpreter/CommandAlias.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandAlias.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandAlias.cpp b/lldb/source/Interpreter/CommandAlias.cpp new file mode 100644 index 00000000000..d77eeeeb357 --- /dev/null +++ b/lldb/source/Interpreter/CommandAlias.cpp @@ -0,0 +1,11 @@ +//===-- CommandAlias.cpp ------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "lldb/Interpreter/CommandAlias.h" + |