diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 14:43:44 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:41 -0700 |
| commit | 1c1423014f5aab77339ebcb261e1d33e3106ec5d (patch) | |
| tree | 61d1e76d550cecefbc4a31b4803137d9cbcf0c43 /toolsrc/src/PostBuildLint_BuildInfo.cpp | |
| parent | 830a4d97d470dad6ca4a27ef1eecce17057fa432 (diff) | |
| download | vcpkg-1c1423014f5aab77339ebcb261e1d33e3106ec5d.tar.gz vcpkg-1c1423014f5aab77339ebcb261e1d33e3106ec5d.zip | |
opt_bool->OptBool
Diffstat (limited to 'toolsrc/src/PostBuildLint_BuildInfo.cpp')
| -rw-r--r-- | toolsrc/src/PostBuildLint_BuildInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/PostBuildLint_BuildInfo.cpp b/toolsrc/src/PostBuildLint_BuildInfo.cpp index 7b7751e66..35aee57cd 100644 --- a/toolsrc/src/PostBuildLint_BuildInfo.cpp +++ b/toolsrc/src/PostBuildLint_BuildInfo.cpp @@ -1,7 +1,7 @@ #include "pch.h" #include "PostBuildLint_BuildInfo.h" #include "vcpkg_Checks.h" -#include "opt_bool.h" +#include "OptBool.h" #include "vcpkglib_helpers.h" #include "Paragraphs.h" @@ -30,7 +30,7 @@ namespace vcpkg::PostBuildLint { const BuildPolicies::type policy = BuildPolicies::parse(p.first); Checks::check_exit(VCPKG_LINE_INFO, policy != BuildPolicies::NULLVALUE, "Unknown policy found: %s", p.first); - const opt_bool_t status = opt_bool::parse(p.second); + const OptBoolT status = OptBool::parse(p.second); build_info.policies.emplace(policy, status); } |
