[Lldb-commits] [lldb] r151941 - /lldb/trunk/source/Expression/RecordingMemoryManager.cpp

Jim Ingham jingham at apple.com
Fri Mar 2 13:35:20 PST 2012


Author: jingham
Date: Fri Mar  2 15:35:20 2012
New Revision: 151941

URL: http://llvm.org/viewvc/llvm-project?rev=151941&view=rev
Log:
And remove the control character that somehow found its way into the last checkin...

Modified:
    lldb/trunk/source/Expression/RecordingMemoryManager.cpp

Modified: lldb/trunk/source/Expression/RecordingMemoryManager.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/RecordingMemoryManager.cpp?rev=151941&r1=151940&r2=151941&view=diff
==============================================================================
--- lldb/trunk/source/Expression/RecordingMemoryManager.cpp (original)
+++ lldb/trunk/source/Expression/RecordingMemoryManager.cpp Fri Mar  2 15:35:20 2012
@@ -241,7 +241,7 @@
         size_t allocation_size = (ai->m_size ? ai->m_size : 1) + ai->m_alignment - 1;
         
         if (allocation_size == 0)
-            allocation_size = 1;œ
+            allocation_size = 1;
         
         ai->m_remote_allocation = process.AllocateMemory(
             allocation_size,





More information about the lldb-commits mailing list