aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-03 19:09:24 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-03 19:09:24 -0800
commitb03b578ffc27a9f0d4d9c7a8edc8edeea487dce3 (patch)
tree66cc3c484da4d6af5672b1913dfe341774f4e0b0 /toolsrc/include
parentd7fb7b7736cd7cd67cedab31772c60430fecb927 (diff)
downloadvcpkg-b03b578ffc27a9f0d4d9c7a8edc8edeea487dce3.tar.gz
vcpkg-b03b578ffc27a9f0d4d9c7a8edc8edeea487dce3.zip
Rename policy to OnlyReleaseCRT
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/PostBuildLint_BuildPolicies.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/include/PostBuildLint_BuildPolicies.h b/toolsrc/include/PostBuildLint_BuildPolicies.h
index 42bd3d718..d815c6d27 100644
--- a/toolsrc/include/PostBuildLint_BuildPolicies.h
+++ b/toolsrc/include/PostBuildLint_BuildPolicies.h
@@ -9,7 +9,7 @@ namespace vcpkg::PostBuildLint::BuildPolicies
NULLVALUE = 0,
EMPTY_PACKAGE,
DLLS_WITHOUT_LIBS,
- NO_DEBUG_BINARIES
+ ONLY_RELEASE_CRT
};
struct type
@@ -30,9 +30,9 @@ namespace vcpkg::PostBuildLint::BuildPolicies
static constexpr type NULLVALUE(backing_enum_t::NULLVALUE);
static constexpr type EMPTY_PACKAGE(backing_enum_t::EMPTY_PACKAGE);
static constexpr type DLLS_WITHOUT_LIBS(backing_enum_t::DLLS_WITHOUT_LIBS);
- static constexpr type NO_DEBUG_BINARIES(backing_enum_t::NO_DEBUG_BINARIES);
+ static constexpr type ONLY_RELEASE_CRT(backing_enum_t::ONLY_RELEASE_CRT);
- static constexpr std::array<type, 3> values = { EMPTY_PACKAGE, DLLS_WITHOUT_LIBS, NO_DEBUG_BINARIES };
+ static constexpr std::array<type, 3> values = { EMPTY_PACKAGE, DLLS_WITHOUT_LIBS, ONLY_RELEASE_CRT };
type parse(const std::string& s);
}