[Lldb-commits] [lldb] r155497 - /lldb/trunk/include/lldb/Core/ValueObject.h

Enrico Granata egranata at apple.com
Tue Apr 24 15:33:23 PDT 2012


Author: enrico
Date: Tue Apr 24 17:33:23 2012
New Revision: 155497

URL: http://llvm.org/viewvc/llvm-project?rev=155497&view=rev
Log:
Fixing a typo in the previous commit that broke the build

Modified:
    lldb/trunk/include/lldb/Core/ValueObject.h

Modified: lldb/trunk/include/lldb/Core/ValueObject.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/ValueObject.h?rev=155497&r1=155496&r2=155497&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/ValueObject.h (original)
+++ lldb/trunk/include/lldb/Core/ValueObject.h Tue Apr 24 17:33:23 2012
@@ -670,7 +670,7 @@
     bool
     IsBitfield ()
     {
-        return (GetBitfieldBitSize() != 0) || (GetBitfieldOffset() != 0);
+        return (GetBitfieldBitSize() != 0) || (GetBitfieldBitOffset() != 0);
     }
     
     virtual bool





More information about the lldb-commits mailing list