diff options
author | Brad King <brad.king@kitware.com> | 2014-05-29 13:58:37 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-05-29 13:58:37 (GMT) |
commit | 1468e986e1874f7c011e74885e4df2fbab65b396 (patch) | |
tree | 333b77c1a92d5d86e803f03019ecd582362eb003 /Source/cmMakefile.h | |
parent | 9e11fcdc761f441de638b321874aea4d97a72676 (diff) | |
parent | dd043c3f21fbfab17d7f400bd2bc9f927215b18e (diff) | |
download | CMake-1468e986e1874f7c011e74885e4df2fbab65b396.zip CMake-1468e986e1874f7c011e74885e4df2fbab65b396.tar.gz CMake-1468e986e1874f7c011e74885e4df2fbab65b396.tar.bz2 |
Merge topic 'cxx14-features'
dd043c3f Features: Add support for C++14 features.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 9a4b9c7..e3b83af 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -1121,7 +1121,7 @@ private: void CheckNeededCLanguage(const std::string& feature, bool& needC90, bool& needC99, bool& needC11) const; void CheckNeededCxxLanguage(const std::string& feature, bool& needCxx98, - bool& needCxx11) const; + bool& needCxx11, bool& needCxx14) const; bool HaveCFeatureAvailable(cmTarget const* target, const std::string& feature) const; |