diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-10 04:09:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 18:05:37 (GMT) |
commit | 3def29da3c16ad3a72f05ea8b97ee728e6e3581e (patch) | |
tree | dd51569f6c5d8f6f8e35518f7fbc94054552d9a4 /Source/cmMakefile.cxx | |
parent | acb116e3b52362b41988aa27eeb593dd2e7194c0 (diff) | |
download | CMake-3def29da3c16ad3a72f05ea8b97ee728e6e3581e.zip CMake-3def29da3c16ad3a72f05ea8b97ee728e6e3581e.tar.gz CMake-3def29da3c16ad3a72f05ea8b97ee728e6e3581e.tar.bz2 |
stringapi: Use strings for feature arguments
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 1ef4d46..bb88bc4 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3801,7 +3801,7 @@ bool cmMakefile::GetPropertyAsBool(const std::string& prop) const } //---------------------------------------------------------------------------- -const char* cmMakefile::GetFeature(const char* feature, +const char* cmMakefile::GetFeature(const std::string& feature, const std::string& config) { // TODO: Define accumulation policy for features (prepend, append, replace). |