commit | 3f2e1b9a4a30cbb01721041da84ede822d2734aa | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Thu Jul 07 04:49:07 2011 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Thu Jul 07 04:49:07 2011 +0000 |
tree | 315e1ed10f192474f2b5de9c090c24af3376fd9d | |
parent | 368f8226b1f75fbb4758748fafcee70f18fc248e [diff] [blame] |
Stop the lldb_private::RegularExpression class from implicitly constructing itself and causing unexpected things to happen in LLDB. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@134598 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectTarget.cpp b/source/Commands/CommandObjectTarget.cpp index 2cce53e..3ee7026 100644 --- a/source/Commands/CommandObjectTarget.cpp +++ b/source/Commands/CommandObjectTarget.cpp
@@ -465,7 +465,7 @@ } else { - matches = exe_ctx.target->GetImages().FindGlobalVariables (arg, + matches = exe_ctx.target->GetImages().FindGlobalVariables (ConstString(arg), true, UINT32_MAX, global_var_list);