summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-11 16:43:44 (GMT)
committerBrad King <brad.king@kitware.com>2015-01-12 15:30:43 (GMT)
commit2bead0eb1b605cc5d0db23d9af00087277157921 (patch)
tree13827e04732e818f9aa0f153a238b88d8f88a245 /Source/cmMakefile.h
parent62b19984039235d5325ee1ad6a7643a4ccd696a8 (diff)
downloadCMake-2bead0eb1b605cc5d0db23d9af00087277157921.zip
CMake-2bead0eb1b605cc5d0db23d9af00087277157921.tar.gz
CMake-2bead0eb1b605cc5d0db23d9af00087277157921.tar.bz2
cmMakefile: Rename a method to what it really does.
The method does not test availability of compile features.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 28f8686..24a4f00 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -935,7 +935,7 @@ public:
const char* CompileFeaturesAvailable(const std::string& lang,
std::string *error) const;
- bool HaveFeatureAvailable(cmTarget const* target, std::string const& lang,
+ bool HaveStandardAvailable(cmTarget const* target, std::string const& lang,
const std::string& feature) const;
bool IsLaterStandard(std::string const& lang,
@@ -1158,9 +1158,9 @@ private:
void CheckNeededCxxLanguage(const std::string& feature, bool& needCxx98,
bool& needCxx11, bool& needCxx14) const;
- bool HaveCFeatureAvailable(cmTarget const* target,
+ bool HaveCStandardAvailable(cmTarget const* target,
const std::string& feature) const;
- bool HaveCxxFeatureAvailable(cmTarget const* target,
+ bool HaveCxxStandardAvailable(cmTarget const* target,
const std::string& feature) const;
mutable bool SuppressWatches;