aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/OptBool.h
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include/OptBool.h')
-rw-r--r--toolsrc/include/OptBool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/include/OptBool.h b/toolsrc/include/OptBool.h
index b6b26833b..7bbc12daf 100644
--- a/toolsrc/include/OptBool.h
+++ b/toolsrc/include/OptBool.h
@@ -29,9 +29,9 @@ namespace vcpkg
namespace OptBoolC
{
- constexpr OptBool UNSPECIFIED(OptBool::BackingEnum::UNSPECIFIED);
- constexpr OptBool ENABLED(OptBool::BackingEnum::ENABLED);
- constexpr OptBool DISABLED(OptBool::BackingEnum::DISABLED);
+ static constexpr OptBool UNSPECIFIED(OptBool::BackingEnum::UNSPECIFIED);
+ static constexpr OptBool ENABLED(OptBool::BackingEnum::ENABLED);
+ static constexpr OptBool DISABLED(OptBool::BackingEnum::DISABLED);
}
template<class T>