diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 14:51:32 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:42 -0700 |
| commit | 6ccb3b95d8f193dc052d06977adc9050dea1c5c6 (patch) | |
| tree | a54d73ff13092fc6dce2304dac42af92854e3f4a /toolsrc/src/PostBuildLint_BuildType.cpp | |
| parent | b36df55c111ccba97322bdf3fa0755eec30e5a8f (diff) | |
| download | vcpkg-6ccb3b95d8f193dc052d06977adc9050dea1c5c6.tar.gz vcpkg-6ccb3b95d8f193dc052d06977adc9050dea1c5c6.zip | |
BuildType to UpperCamelCase
Diffstat (limited to 'toolsrc/src/PostBuildLint_BuildType.cpp')
| -rw-r--r-- | toolsrc/src/PostBuildLint_BuildType.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/toolsrc/src/PostBuildLint_BuildType.cpp b/toolsrc/src/PostBuildLint_BuildType.cpp index 593d976f2..915d5d670 100644 --- a/toolsrc/src/PostBuildLint_BuildType.cpp +++ b/toolsrc/src/PostBuildLint_BuildType.cpp @@ -4,7 +4,7 @@ namespace vcpkg::PostBuildLint::BuildType { - type value_of(const ConfigurationType::type& config, const LinkageType::type& linkage) + Type value_of(const ConfigurationType::type& config, const LinkageType::type& linkage) { if (config == ConfigurationType::DEBUG && linkage == LinkageType::STATIC) { @@ -29,17 +29,17 @@ namespace vcpkg::PostBuildLint::BuildType Checks::unreachable(VCPKG_LINE_INFO); } - const ConfigurationType::type& type::config() const + const ConfigurationType::type& Type::config() const { return this->m_config; } - const LinkageType::type& type::linkage() const + const LinkageType::type& Type::linkage() const { return this->m_linkage; } - const std::regex& type::crt_regex() const + const std::regex& Type::crt_regex() const { static const std::regex REGEX_DEBUG_STATIC(R"(/DEFAULTLIB:LIBCMTD)", std::regex_constants::icase); static const std::regex REGEX_DEBUG_DYNAMIC(R"(/DEFAULTLIB:MSVCRTD)", std::regex_constants::icase); @@ -61,7 +61,7 @@ namespace vcpkg::PostBuildLint::BuildType } } - const std::string& type::toString() const + const std::string& Type::toString() const { static const std::string NAME_DEBUG_STATIC("Debug,Static"); static const std::string NAME_DEBUG_DYNAMIC("Debug,Dynamic"); |
