From 3033da9142fd4adc7a7a163ac0839c5da69fd494 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 3 Apr 2017 14:23:05 -0700 Subject: lazy -> Lazy --- toolsrc/include/lazy.h | 4 ++-- toolsrc/include/vcpkg_paths.h | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'toolsrc/include') 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 - class lazy + class Lazy { public: - lazy() : value(T()), initialized(false) {} + Lazy() : value(T()), initialized(false) {} template 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 cmake_exe; - lazy git_exe; - lazy nuget_exe; - lazy toolset; + Lazy cmake_exe; + Lazy git_exe; + Lazy nuget_exe; + Lazy toolset; }; } -- cgit v1.2.3