diff options
author | Greg Clayton <gclayton@apple.com> | 2011-01-25 23:55:37 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-01-25 23:55:37 +0000 |
commit | 1a65ae11bd65d007391473f8bde3d06f4abad740 (patch) | |
tree | 12bcbcdd2564d2bf305c3642ebe3a0b80128beb7 /lldb/source/Commands/CommandObjectFrame.cpp | |
parent | 3ae681eb1240f09af37936663760526ed1b324cf (diff) | |
download | bcm5719-llvm-1a65ae11bd65d007391473f8bde3d06f4abad740.tar.gz bcm5719-llvm-1a65ae11bd65d007391473f8bde3d06f4abad740.zip |
Enabled extra warnings and fixed a bunch of small issues.
llvm-svn: 124250
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index 3d9d819e6d8..0d955b37691 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -629,7 +629,7 @@ public: { for (uint32_t i=0; i<num_variables; i++) { - VariableSP var_sp (variable_list->GetVariableAtIndex(i)); + var_sp = variable_list->GetVariableAtIndex(i); bool dump_variable = true; switch (var_sp->GetScope()) |