mirror of
https://github.com/catchorg/Catch2.git
synced 2025-03-30 23:24:47 +02:00
Use make_unique instead of unique_ptr(new T)
This commit is contained in:
parent
816f69416b
commit
e6da4e10ae
@ -1165,7 +1165,7 @@ namespace Catch {
|
|||||||
makeTestCaseInfo(std::string const& _className,
|
makeTestCaseInfo(std::string const& _className,
|
||||||
NameAndTags const& nameAndTags,
|
NameAndTags const& nameAndTags,
|
||||||
SourceLineInfo const& _lineInfo ) {
|
SourceLineInfo const& _lineInfo ) {
|
||||||
return Detail::unique_ptr<TestCaseInfo>(new TestCaseInfo(_className, nameAndTags, _lineInfo));
|
return Detail::make_unique<TestCaseInfo>(_className, nameAndTags, _lineInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
TestCaseInfo::TestCaseInfo(std::string const& _className,
|
TestCaseInfo::TestCaseInfo(std::string const& _className,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user