summaryrefslogtreecommitdiffstats
path: root/lldb/tools/lldb-test/lldb-test.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2019-08-22 16:58:56 +0000
committerAdrian Prantl <aprantl@apple.com>2019-08-22 16:58:56 +0000
commit9a0f124f26437504c50fdb78401b73d820ed3991 (patch)
tree8d5c7c32729b1b949182ad5619dd0aef0dfac21a /lldb/tools/lldb-test/lldb-test.cpp
parent7be93589c4b548ac2aeed12475338e66c7b388bf (diff)
downloadbcm5719-llvm-9a0f124f26437504c50fdb78401b73d820ed3991.tar.gz
bcm5719-llvm-9a0f124f26437504c50fdb78401b73d820ed3991.zip
Remove redundant curly braces.
llvm-svn: 369670
Diffstat (limited to 'lldb/tools/lldb-test/lldb-test.cpp')
-rw-r--r--lldb/tools/lldb-test/lldb-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/lldb-test/lldb-test.cpp b/lldb/tools/lldb-test/lldb-test.cpp
index d7b67373e5e..5eaf006d128 100644
--- a/lldb/tools/lldb-test/lldb-test.cpp
+++ b/lldb/tools/lldb-test/lldb-test.cpp
@@ -513,7 +513,7 @@ Error opts::symbols::findTypes(lldb_private::Module &Module) {
Symfile.FindTypes(ConstString(Name), ContextPtr, true, UINT32_MAX,
SearchedFiles, Map);
else
- Symfile.FindTypes({parseCompilerContext()}, true, Map);
+ Symfile.FindTypes(parseCompilerContext(), true, Map);
outs() << formatv("Found {0} types:\n", Map.GetSize());
StreamString Stream;
OpenPOWER on IntegriCloud