[Lldb-commits] [lldb] r175478 - Fixing the lack of a space in an expression that was causing sheer unhappiness.
Enrico Granata
egranata at apple.com
Mon Feb 18 17:14:06 PST 2013
Author: enrico
Date: Mon Feb 18 19:14:06 2013
New Revision: 175478
URL: http://llvm.org/viewvc/llvm-project?rev=175478&view=rev
Log:
Fixing the lack of a space in an expression that was causing sheer unhappiness.
Modified:
lldb/trunk/source/DataFormatters/CXXFormatterFunctions.cpp
Modified: lldb/trunk/source/DataFormatters/CXXFormatterFunctions.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/CXXFormatterFunctions.cpp?rev=175478&r1=175477&r2=175478&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/CXXFormatterFunctions.cpp (original)
+++ lldb/trunk/source/DataFormatters/CXXFormatterFunctions.cpp Mon Feb 18 19:14:06 2013
@@ -72,7 +72,7 @@ lldb_private::formatters::ExtractSummary
if (!selector || !*selector)
return false;
StreamString expr;
- expr.Printf("(%s)[(id)0x%" PRIx64 "%s]",target_type,valobj.GetPointerValue(),selector);
+ expr.Printf("(%s)[(id)0x%" PRIx64 " %s]",target_type,valobj.GetPointerValue(),selector);
ExecutionContext exe_ctx (valobj.GetExecutionContextRef());
lldb::ValueObjectSP result_sp;
Target* target = exe_ctx.GetTargetPtr();
More information about the lldb-commits
mailing list