diff options
author | Ben Boeckel <mathstuf@gmail.com> | 2014-03-11 04:22:02 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-04-29 01:43:39 (GMT) |
commit | 7b8a990424228716cc3161027dcf2c18ef9793b6 (patch) | |
tree | f3d5a1f2867f06976aa770899b7fa228e10cd7df /Source/cmSourceFile.h | |
parent | 10baf00f3d14124ee97ca12510595501d66ed70e (diff) | |
download | CMake-7b8a990424228716cc3161027dcf2c18ef9793b6.zip CMake-7b8a990424228716cc3161027dcf2c18ef9793b6.tar.gz CMake-7b8a990424228716cc3161027dcf2c18ef9793b6.tar.bz2 |
perf: Cache the language property string
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r-- | Source/cmSourceFile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index 42d6f8a..bdcdbfd 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -117,6 +117,8 @@ private: void CheckLanguage(std::string const& ext); std::vector<std::string> Depends; + + static const std::string propLANGUAGE; }; // TODO: Factor out into platform information modules. |