aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 14:23:05 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:41 -0700
commit3033da9142fd4adc7a7a163ac0839c5da69fd494 (patch)
tree43215e87ffe838a3af12c267c9f1e7d907eee355 /toolsrc/include
parent604d0e58dab76f8ab31eb4f7807f7b561c4d571d (diff)
downloadvcpkg-3033da9142fd4adc7a7a163ac0839c5da69fd494.tar.gz
vcpkg-3033da9142fd4adc7a7a163ac0839c5da69fd494.zip
lazy<T> -> Lazy<T>
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/lazy.h4
-rw-r--r--toolsrc/include/vcpkg_paths.h10
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;
};
}