We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c29a60 commit fb60defCopy full SHA for fb60def
llvm/include/llvm/Support/VirtualOutputConfig.h
@@ -68,14 +68,14 @@ struct OutputConfig : detail::EmptyBaseClass {
68
{
69
}
70
71
- constexpr bool operator==(OutputConfig RHS) const {
+ bool operator==(OutputConfig RHS) const {
72
#define HANDLE_OUTPUT_CONFIG_FLAG(NAME, DEFAULT) \
73
if (NAME != RHS.NAME) \
74
return false;
75
#include "llvm/Support/VirtualOutputConfig.def"
76
return true;
77
78
- constexpr bool operator!=(OutputConfig RHS) const { return !operator==(RHS); }
+ bool operator!=(OutputConfig RHS) const { return !operator==(RHS); }
79
80
private:
81
#define HANDLE_OUTPUT_CONFIG_FLAG(NAME, DEFAULT) bool NAME : 1;
0 commit comments