mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 06:16:49 +00:00
CTestSVN: Accept std::string in SVNInfo constructor
This commit is contained in:
parent
68e20f674a
commit
2e5307a2a4
@ -521,7 +521,7 @@ private:
|
||||
} else {
|
||||
local_path = path;
|
||||
}
|
||||
this->SVN->Repositories.emplace_back(local_path.c_str());
|
||||
this->SVN->Repositories.emplace_back(local_path);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -41,7 +41,7 @@ private:
|
||||
struct SVNInfo
|
||||
{
|
||||
|
||||
SVNInfo(const char* path)
|
||||
SVNInfo(std::string const& path = std::string())
|
||||
: LocalPath(path)
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user