diff options
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/lazy.h | 4 | ||||
| -rw-r--r-- | toolsrc/include/vcpkg_paths.h | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/toolsrc/include/lazy.h b/toolsrc/include/lazy.h index 0fa50dc4d..9a7107002 100644 --- a/toolsrc/include/lazy.h +++ b/toolsrc/include/lazy.h @@ -3,10 +3,10 @@ namespace vcpkg { template <typename T> - class lazy + class Lazy { public: - lazy() : value(T()), initialized(false) {} + Lazy() : value(T()), initialized(false) {} template <class F> T const& get_lazy(const F& f) const diff --git a/toolsrc/include/vcpkg_paths.h b/toolsrc/include/vcpkg_paths.h index 5bfc91967..eb0f1bb0f 100644 --- a/toolsrc/include/vcpkg_paths.h +++ b/toolsrc/include/vcpkg_paths.h @@ -3,7 +3,7 @@ #include "vcpkg_expected.h" #include "package_spec.h" #include "BinaryParagraph.h" -#include "lazy.h" +#include "Lazy.h" namespace vcpkg { @@ -50,9 +50,9 @@ namespace vcpkg const toolset_t& get_toolset() const; private: - lazy<fs::path> cmake_exe; - lazy<fs::path> git_exe; - lazy<fs::path> nuget_exe; - lazy<toolset_t> toolset; + Lazy<fs::path> cmake_exe; + Lazy<fs::path> git_exe; + Lazy<fs::path> nuget_exe; + Lazy<toolset_t> toolset; }; } |
