diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-04-02 16:53:34 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-04-02 18:11:50 (GMT) |
commit | 5431395d68a44d42149fb93692636f4138ddf6ed (patch) | |
tree | f858e3027430a48044a1e5f36b21437537565d79 /Source/cmQtAutoGenGlobalInitializer.cxx | |
parent | 78eccc7836e068652ea772ec65614bc446f23b14 (diff) | |
download | CMake-5431395d68a44d42149fb93692636f4138ddf6ed.zip CMake-5431395d68a44d42149fb93692636f4138ddf6ed.tar.gz CMake-5431395d68a44d42149fb93692636f4138ddf6ed.tar.bz2 |
Autogen: Add cmQtAutogenGlobalInitializer::Keywords class
The new `cmQtAutogenGlobalInitializer::Keywords` class instance is bound to
the lifetime of the `cmQtAutogenGlobalInitializer` instance. Global static
const strings would be allocated at program start and deallocated at program
end. Keeping keyword strings alive only in the context where they're
needed helps to reduce the memory footprint.
Diffstat (limited to 'Source/cmQtAutoGenGlobalInitializer.cxx')
-rw-r--r-- | Source/cmQtAutoGenGlobalInitializer.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmQtAutoGenGlobalInitializer.cxx b/Source/cmQtAutoGenGlobalInitializer.cxx index 7bd0e52..994cfc8 100644 --- a/Source/cmQtAutoGenGlobalInitializer.cxx +++ b/Source/cmQtAutoGenGlobalInitializer.cxx @@ -20,6 +20,13 @@ #include <memory> #include <utility> +cmQtAutoGenGlobalInitializer::Keywords::Keywords() + : AUTOMOC("AUTOMOC") + , AUTOUIC("AUTOUIC") + , AUTORCC("AUTORCC") +{ +} + cmQtAutoGenGlobalInitializer::cmQtAutoGenGlobalInitializer( std::vector<cmLocalGenerator*> const& localGenerators) { |