diff options
author | Brad King <brad.king@kitware.com> | 2023-05-22 18:32:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-05-22 21:15:58 (GMT) |
commit | 9ea7b4ac66fee01a840dba9071a8bd0a4a576e8d (patch) | |
tree | 92259ff505d4a0bb3c289a620242e7ca5eca7dc3 /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | bd4ec7a71ea0033b6a4fd80956e6a84e40a5a5ef (diff) | |
download | CMake-9ea7b4ac66fee01a840dba9071a8bd0a4a576e8d.zip CMake-9ea7b4ac66fee01a840dba9071a8bd0a4a576e8d.tar.gz CMake-9ea7b4ac66fee01a840dba9071a8bd0a4a576e8d.tar.bz2 |
clang-tidy: Fix readability-redundant-string-cstr warnings
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index b07a74b..fc3caa1 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -785,7 +785,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules( if (this->GeneratorTarget->HasSOName(this->GetConfigName())) { vars.SONameFlag = this->Makefile->GetSONameFlag(linkLanguage); targetOutSOName = this->LocalGenerator->ConvertToOutputFormat( - this->TargetNames.SharedObject.c_str(), cmOutputConverter::SHELL); + this->TargetNames.SharedObject, cmOutputConverter::SHELL); vars.TargetSOName = targetOutSOName.c_str(); } vars.LinkFlags = linkFlags.c_str(); |