diff options
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 d3023e5cb3..90f38bce2d 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -435,7 +435,7 @@ public: typedef DataType parser_data_type; // Implement virtual functions needed by generic_parser_base - unsigned getNumOptions() const { return Values.size(); } + unsigned getNumOptions() const { return (unsigned)Values.size(); } const char *getOption(unsigned N) const { return Values[N].first; } const char *getDescription(unsigned N) const { return Values[N].second.second; |