summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGenGlobalInitializer.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-04-02 17:11:19 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-04-02 18:12:43 (GMT)
commitb32e18fb88434d3f9d58447212ee33a51430c144 (patch)
treef5caa0819c99cc73d470fb0bffe3b4f76e8a0bc5 /Source/cmQtAutoGenGlobalInitializer.h
parent5431395d68a44d42149fb93692636f4138ddf6ed (diff)
downloadCMake-b32e18fb88434d3f9d58447212ee33a51430c144.zip
CMake-b32e18fb88434d3f9d58447212ee33a51430c144.tar.gz
CMake-b32e18fb88434d3f9d58447212ee33a51430c144.tar.bz2
Autogen: Remove static const generator name strings from cmQtAutoGen
Diffstat (limited to 'Source/cmQtAutoGenGlobalInitializer.h')
-rw-r--r--Source/cmQtAutoGenGlobalInitializer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGenGlobalInitializer.h b/Source/cmQtAutoGenGlobalInitializer.h
index 6cddf16..76ed76b 100644
--- a/Source/cmQtAutoGenGlobalInitializer.h
+++ b/Source/cmQtAutoGenGlobalInitializer.h
@@ -34,7 +34,7 @@ public:
std::vector<cmLocalGenerator*> const& localGenerators);
~cmQtAutoGenGlobalInitializer();
- Keywords const* kw() const { return Keywords_.get(); };
+ Keywords const& kw() const { return Keywords_; };
bool generate();
@@ -62,7 +62,7 @@ private:
std::map<cmLocalGenerator*, std::string> GlobalAutoGenTargets_;
std::map<cmLocalGenerator*, std::string> GlobalAutoRccTargets_;
std::unordered_map<std::string, std::string> ExecutableTestOutputs_;
- std::unique_ptr<Keywords> Keywords_;
+ Keywords const Keywords_;
};
#endif