diff options
author | Sean Callanan <scallanan@apple.com> | 2015-09-03 00:35:46 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2015-09-03 00:35:46 +0000 |
commit | e33724f371eae590d984f0be7e943b670b99274a (patch) | |
tree | 6832014aca30111c0d42b8d9fc0b134482af3d9f /lldb/source/Commands/CommandObjectArgs.cpp | |
parent | e90dc827e05f71f5c6a66513fd38c822dd2360a7 (diff) | |
download | llvm-e33724f371eae590d984f0be7e943b670b99274a.zip llvm-e33724f371eae590d984f0be7e943b670b99274a.tar.gz llvm-e33724f371eae590d984f0be7e943b670b99274a.tar.bz2 |
In preparation for factoring persistent variables into a generic part and a
Clang-specific part, create the ExpressionVariable source/header file and
move ClangExpressionVariable into the Clang expression parser plugin.
It is expected that there are some ugly #include paths... these will be resolved
by either (1) making that code use generic expression variables (once they're
separated appropriately) or (2) moving that code into a plug-in, often
the expression parser plug-in.
llvm-svn: 246737
Diffstat (limited to 'lldb/source/Commands/CommandObjectArgs.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectArgs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp index 5443c84..5a25722 100644 --- a/lldb/source/Commands/CommandObjectArgs.cpp +++ b/lldb/source/Commands/CommandObjectArgs.cpp @@ -18,7 +18,7 @@ #include "lldb/Core/Module.h" #include "lldb/Core/Value.h" #include "lldb/Expression/ClangExpression.h" -#include "lldb/Expression/ClangExpressionVariable.h" +#include "lldb/../../source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h" #include "lldb/Expression/ClangFunction.h" #include "lldb/Host/Host.h" #include "lldb/Interpreter/CommandInterpreter.h" |