mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 16:32:14 -06:00
Makefiles: Inline only use of method
This commit is contained in:
@@ -1217,13 +1217,6 @@ void cmMakefileTargetGenerator::WriteObjectsVariable(
|
||||
<< "\n";
|
||||
}
|
||||
|
||||
void cmMakefileTargetGenerator::WriteObjectsString(std::string& buildObjs)
|
||||
{
|
||||
std::vector<std::string> objStrings;
|
||||
this->WriteObjectsStrings(objStrings);
|
||||
buildObjs = objStrings[0];
|
||||
}
|
||||
|
||||
class cmMakefileTargetGeneratorObjectStrings
|
||||
{
|
||||
public:
|
||||
@@ -1677,7 +1670,9 @@ void cmMakefileTargetGenerator::CreateObjectLists(
|
||||
}
|
||||
} else if (useLinkScript) {
|
||||
if (!useArchiveRules) {
|
||||
this->WriteObjectsString(buildObjs);
|
||||
std::vector<std::string> objStrings;
|
||||
this->WriteObjectsStrings(objStrings);
|
||||
buildObjs = objStrings[0];
|
||||
}
|
||||
} else {
|
||||
buildObjs = "$(";
|
||||
|
||||
@@ -112,7 +112,6 @@ protected:
|
||||
void WriteObjectsVariable(std::string& variableName,
|
||||
std::string& variableNameExternal,
|
||||
bool useWatcomQuote);
|
||||
void WriteObjectsString(std::string& buildObjs);
|
||||
void WriteObjectsStrings(std::vector<std::string>& objStrings,
|
||||
std::string::size_type limit = std::string::npos);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user