mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-07 07:08:40 -06:00
cmList: Add container conversion to string
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
#include "cmTargetLinkOptionsCommand.h"
|
||||
|
||||
#include "cmList.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
@@ -36,7 +37,7 @@ private:
|
||||
|
||||
std::string Join(const std::vector<std::string>& content) override
|
||||
{
|
||||
return cmJoin(content, ";");
|
||||
return cmList::to_string(content);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user