aboutsummaryrefslogtreecommitdiff
path: root/include/Support/CommandLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/CommandLine.h')
-rw-r--r--include/Support/CommandLine.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/Support/CommandLine.h b/include/Support/CommandLine.h
index d258b9d4e2..1a4a2adaab 100644
--- a/include/Support/CommandLine.h
+++ b/include/Support/CommandLine.h
@@ -107,8 +107,9 @@ enum FormattingFlags {
};
enum MiscFlags { // Miscellaneous flags to adjust argument
- CommaSeparated = 0x200, // Should this cl::list split between commas?
- MiscMask = 0x200,
+ CommaSeparated = 0x200, // Should this cl::list split between commas?
+ PositionalEatsArgs = 0x400, // Should this positional cl::list eat -args?
+ MiscMask = 0x600,
};