diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-01-24 16:18:30 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-01-24 16:18:30 +0000 |
commit | b2b3d7d972f1a5aa5c96400ef036c520696b4e77 (patch) | |
tree | a701d0bd31b852914f9df92ff0fa7d5bdfd6b0a2 /include/llvm/Support/CommandLine.h | |
parent | bec2d03c4d774e67ebc586b3a00792d996f26140 (diff) | |
download | external_llvm-b2b3d7d972f1a5aa5c96400ef036c520696b4e77.zip external_llvm-b2b3d7d972f1a5aa5c96400ef036c520696b4e77.tar.gz external_llvm-b2b3d7d972f1a5aa5c96400ef036c520696b4e77.tar.bz2 |
Reword comment based on feedback by Duncan Sands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148809 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CommandLine.h')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 65b3497..dd291f6 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -164,7 +164,7 @@ class Option { int NumOccurrences; // The number of times specified // Occurrences, HiddenFlag, and Formatting are all enum types but to avoid - // with signed enums in bitfields in MSVC we'll store them as unsigned + // problems with signed enums in bitfields. unsigned Occurrences : 3; // enum NumOccurrencesFlag // not using the enum type for 'Value' because zero is an implementation // detail representing the non-value |