[Lldb-commits] [lldb] r106022 - /lldb/trunk/include/lldb/lldb-types.h

Jim Ingham jingham at apple.com
Tue Jun 15 11:50:33 PDT 2010


Author: jingham
Date: Tue Jun 15 13:50:32 2010
New Revision: 106022

URL: http://llvm.org/viewvc/llvm-project?rev=106022&view=rev
Log:
Fix a typo in a comment...

Modified:
    lldb/trunk/include/lldb/lldb-types.h

Modified: lldb/trunk/include/lldb/lldb-types.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/lldb-types.h?rev=106022&r1=106021&r2=106022&view=diff
==============================================================================
--- lldb/trunk/include/lldb/lldb-types.h (original)
+++ lldb/trunk/include/lldb/lldb-types.h Tue Jun 15 13:50:32 2010
@@ -131,7 +131,7 @@
     
     typedef struct
     {
-        uint32_t        usage_mask;    // Used to mark options that can be used together.  If 1 << n && usage_mask != 0
+        uint32_t        usage_mask;    // Used to mark options that can be used together.  If (1 << n & usage_mask) != 0
                                        // then this option belongs to option set n.
         bool            required;       // This option is required (in the current usage level)
         CONST_CHAR_PTR  long_option;    // Full name for this option.





More information about the lldb-commits mailing list