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.h | |
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.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 1c3ad73..7c82ec2 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -811,7 +811,8 @@ public: cmProperty::ScopeType scope) const; bool GetPropertyAsBool(const std::string& prop) const; - const char* GetFeature(const char* feature, const std::string& config); + const char* GetFeature(const std::string& feature, + const std::string& config); // Get the properties cmPropertyMap &GetProperties() { return this->Properties; }; |