From 64f78a310da44061af6461c68aa94565dceeb2fe Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Tue, 15 Jun 2010 18:50:32 +0000 Subject: [PATCH] Fix a typo in a comment... llvm-svn: 106022 --- lldb/include/lldb/lldb-types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/include/lldb/lldb-types.h b/lldb/include/lldb/lldb-types.h index d9b42d09f948..91d94553a41b 100644 --- a/lldb/include/lldb/lldb-types.h +++ b/lldb/include/lldb/lldb-types.h @@ -131,7 +131,7 @@ namespace lldb { 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.