From fdda06e83d7da985bf78ea81e2da450052798204 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 3 Apr 2017 14:52:06 -0700 Subject: ConfigurationType to UpperCamelCase --- toolsrc/include/PostBuildLint_ConfigurationType.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'toolsrc/include/PostBuildLint_ConfigurationType.h') diff --git a/toolsrc/include/PostBuildLint_ConfigurationType.h b/toolsrc/include/PostBuildLint_ConfigurationType.h index 7245d2932..0f29110a7 100644 --- a/toolsrc/include/PostBuildLint_ConfigurationType.h +++ b/toolsrc/include/PostBuildLint_ConfigurationType.h @@ -4,30 +4,30 @@ namespace vcpkg::PostBuildLint::ConfigurationType { - enum class backing_enum_t + enum class BackingEnum { NULLVALUE = 0, DEBUG = 1, RELEASE = 2 }; - struct type + struct Type { - constexpr type() : backing_enum(backing_enum_t::NULLVALUE) {} - constexpr explicit type(backing_enum_t backing_enum) : backing_enum(backing_enum) { } - constexpr operator backing_enum_t() const { return backing_enum; } + constexpr Type() : backing_enum(BackingEnum::NULLVALUE) {} + constexpr explicit Type(BackingEnum backing_enum) : backing_enum(backing_enum) { } + constexpr operator BackingEnum() const { return backing_enum; } const std::string& toString() const; private: - backing_enum_t backing_enum; + BackingEnum backing_enum; }; static const std::string ENUM_NAME = "vcpkg::PostBuildLint::ConfigurationType"; - static constexpr type NULLVALUE(backing_enum_t::NULLVALUE); - static constexpr type DEBUG(backing_enum_t::DEBUG); - static constexpr type RELEASE(backing_enum_t::RELEASE); + static constexpr Type NULLVALUE(BackingEnum::NULLVALUE); + static constexpr Type DEBUG(BackingEnum::DEBUG); + static constexpr Type RELEASE(BackingEnum::RELEASE); - static constexpr std::array values = { DEBUG, RELEASE }; + static constexpr std::array values = { DEBUG, RELEASE }; } -- cgit v1.2.3