diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-08-24 17:58:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-08-27 18:07:43 (GMT) |
commit | c8fd23ec6f33eef8cf11d81938c379590080bd19 (patch) | |
tree | 75a04f4a2a037ededbee0a92628c103af03fc816 /Source/cmCPluginAPI.cxx | |
parent | 0897c3cf585853358ef7ec2bd180dbb2e3288b21 (diff) | |
download | CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.zip CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.tar.gz CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.tar.bz2 |
cmMakefile: return directories as const std::string&
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index be3d2f4..3aa59d6 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -118,22 +118,22 @@ const char* CCONV cmGetHomeOutputDirectory(void* arg) const char* CCONV cmGetStartDirectory(void* arg) { cmMakefile* mf = static_cast<cmMakefile*>(arg); - return mf->GetCurrentSourceDirectory(); + return mf->GetCurrentSourceDirectory().c_str(); } const char* CCONV cmGetStartOutputDirectory(void* arg) { cmMakefile* mf = static_cast<cmMakefile*>(arg); - return mf->GetCurrentBinaryDirectory(); + return mf->GetCurrentBinaryDirectory().c_str(); } const char* CCONV cmGetCurrentDirectory(void* arg) { cmMakefile* mf = static_cast<cmMakefile*>(arg); - return mf->GetCurrentSourceDirectory(); + return mf->GetCurrentSourceDirectory().c_str(); } const char* CCONV cmGetCurrentOutputDirectory(void* arg) { cmMakefile* mf = static_cast<cmMakefile*>(arg); - return mf->GetCurrentBinaryDirectory(); + return mf->GetCurrentBinaryDirectory().c_str(); } const char* CCONV cmGetDefinition(void* arg, const char* def) { |