diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index c20765d5d7f..692e16df041 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -565,9 +565,9 @@ struct OptionEnumValue { }; #define clEnumVal(ENUMVAL, DESC) \ - cl::OptionEnumValue { #ENUMVAL, int(ENUMVAL), DESC } + llvm::cl::OptionEnumValue { #ENUMVAL, int(ENUMVAL), DESC } #define clEnumValN(ENUMVAL, FLAGNAME, DESC) \ - cl::OptionEnumValue { FLAGNAME, int(ENUMVAL), DESC } + llvm::cl::OptionEnumValue { FLAGNAME, int(ENUMVAL), DESC } // values - For custom data types, allow specifying a group of values together // as the values that go into the mapping that the option handler uses.