From cc1139cc304b6bd4c8403d437cf08f73e06e243a Mon Sep 17 00:00:00 2001 From: Nils Gladitz Date: Wed, 15 Oct 2014 14:54:05 +0200 Subject: strings: Remove redundant calls to std::string::c_str() Replacements were detected and performed by the clang tool remove-cstr-calls on a linux build. --- Source/cmGetPropertyCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/cmGetPropertyCommand.cxx') diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx index 9a88191f41..3c59c25ab1 100644 --- a/Source/cmGetPropertyCommand.cxx +++ b/Source/cmGetPropertyCommand.cxx @@ -259,7 +259,7 @@ bool cmGetPropertyCommand::HandleDirectoryMode() } // The local generators are associated with collapsed paths. - dir = cmSystemTools::CollapseFullPath(dir.c_str()); + dir = cmSystemTools::CollapseFullPath(dir); // Lookup the generator. if(cmLocalGenerator* lg = -- cgit v1.2.1