-
- Downloads
cmMakefile: make some methods take const std::string& instead of const char*
Most callers already have a std::string, on which they called c_str() to pass it into these methods, which internally converted it back to std::string. Pass a std::string directly to these methods now, avoiding all these conversions. Those methods that only pass in a const char* will get the conversion to std::string now only once.
Showing
- Source/cmAddDependenciesCommand.cxx 2 additions, 2 deletionsSource/cmAddDependenciesCommand.cxx
- Source/cmAddExecutableCommand.cxx 1 addition, 1 deletionSource/cmAddExecutableCommand.cxx
- Source/cmAddLibraryCommand.cxx 1 addition, 1 deletionSource/cmAddLibraryCommand.cxx
- Source/cmComputeTargetDepends.cxx 1 addition, 1 deletionSource/cmComputeTargetDepends.cxx
- Source/cmCoreTryCompile.cxx 1 addition, 1 deletionSource/cmCoreTryCompile.cxx
- Source/cmCustomCommandGenerator.cxx 1 addition, 1 deletionSource/cmCustomCommandGenerator.cxx
- Source/cmExportBuildFileGenerator.cxx 1 addition, 1 deletionSource/cmExportBuildFileGenerator.cxx
- Source/cmExportCommand.cxx 1 addition, 1 deletionSource/cmExportCommand.cxx
- Source/cmExportFileGenerator.cxx 1 addition, 1 deletionSource/cmExportFileGenerator.cxx
- Source/cmExportTryCompileFileGenerator.cxx 1 addition, 1 deletionSource/cmExportTryCompileFileGenerator.cxx
- Source/cmFLTKWrapUICommand.cxx 1 addition, 1 deletionSource/cmFLTKWrapUICommand.cxx
- Source/cmGeneratorExpressionEvaluator.cxx 5 additions, 7 deletionsSource/cmGeneratorExpressionEvaluator.cxx
- Source/cmGeneratorTarget.cxx 5 additions, 5 deletionsSource/cmGeneratorTarget.cxx
- Source/cmGetPropertyCommand.cxx 3 additions, 3 deletionsSource/cmGetPropertyCommand.cxx
- Source/cmGetTargetPropertyCommand.cxx 1 addition, 1 deletionSource/cmGetTargetPropertyCommand.cxx
- Source/cmIfCommand.cxx 1 addition, 1 deletionSource/cmIfCommand.cxx
- Source/cmInstallCommand.cxx 2 additions, 2 deletionsSource/cmInstallCommand.cxx
- Source/cmLocalGenerator.cxx 1 addition, 1 deletionSource/cmLocalGenerator.cxx
- Source/cmMakefile.cxx 11 additions, 7 deletionsSource/cmMakefile.cxx
- Source/cmMakefile.h 5 additions, 3 deletionsSource/cmMakefile.h
Loading
Please register or sign in to comment