aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/PostBuildLint_BuildPolicies.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 14:50:50 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:42 -0700
commitb36df55c111ccba97322bdf3fa0755eec30e5a8f (patch)
tree3fc0ab67ba2d38757a910018a158f66542c832e8 /toolsrc/src/PostBuildLint_BuildPolicies.cpp
parent7ee180ebdd7ec93a4ba3c34c38fd467109365ad6 (diff)
downloadvcpkg-b36df55c111ccba97322bdf3fa0755eec30e5a8f.tar.gz
vcpkg-b36df55c111ccba97322bdf3fa0755eec30e5a8f.zip
BuildPolicies to UpperCamelCase
Diffstat (limited to 'toolsrc/src/PostBuildLint_BuildPolicies.cpp')
-rw-r--r--toolsrc/src/PostBuildLint_BuildPolicies.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/PostBuildLint_BuildPolicies.cpp b/toolsrc/src/PostBuildLint_BuildPolicies.cpp
index dab27b72a..470adee9e 100644
--- a/toolsrc/src/PostBuildLint_BuildPolicies.cpp
+++ b/toolsrc/src/PostBuildLint_BuildPolicies.cpp
@@ -12,7 +12,7 @@ namespace vcpkg::PostBuildLint::BuildPolicies
static const std::string NAME_ONLY_RELEASE_CRT = "PolicyOnlyReleaseCRT";
static const std::string NAME_EMPTY_INCLUDE_FOLDER = "PolicyEmptyIncludeFolder";
- const std::string& type::toString() const
+ const std::string& Type::toString() const
{
switch (this->backing_enum)
{
@@ -31,7 +31,7 @@ namespace vcpkg::PostBuildLint::BuildPolicies
}
}
- const std::string& type::cmake_variable() const
+ const std::string& Type::cmake_variable() const
{
static const std::string CMAKE_VARIABLE_EMPTY_PACKAGE = "VCPKG_POLICY_EMPTY_PACKAGE";
static const std::string CMAKE_VARIABLE_DLLS_WITHOUT_LIBS = "VCPKG_POLICY_DLLS_WITHOUT_LIBS";
@@ -55,7 +55,7 @@ namespace vcpkg::PostBuildLint::BuildPolicies
}
}
- type parse(const std::string& s)
+ Type parse(const std::string& s)
{
if (s == NAME_EMPTY_PACKAGE)
{