diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 08:57:31 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-25 17:55:34 (GMT) |
commit | 6ce940ac9701c93be01ed169c6bd23b22e04782f (patch) | |
tree | a772611160eeee031c2a6f25d7e4b0fae7a42736 /Source/cmMakefile.h | |
parent | e8c0341d86e3f2b9658dfc594641f9ba1b29165b (diff) | |
download | CMake-6ce940ac9701c93be01ed169c6bd23b22e04782f.zip CMake-6ce940ac9701c93be01ed169c6bd23b22e04782f.tar.gz CMake-6ce940ac9701c93be01ed169c6bd23b22e04782f.tar.bz2 |
cmMakefile: Use std::string in ProjectName API.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 959f0e7..dfd3e19 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -274,12 +274,12 @@ public: /** * Specify the name of the project for this build. */ - void SetProjectName(const char*); + void SetProjectName(std::string const& name); /** * Get the name of the project for this build. */ - const char* GetProjectName() const; + std::string GetProjectName() const; /** Get the configurations to be generated. */ std::string GetConfigurations(std::vector<std::string>& configs, |