mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-03 10:27:57 +00:00
Use make_unique instead of unique_ptr(new T)
This commit is contained in:
parent
816f69416b
commit
e6da4e10ae
1 changed files with 1 additions and 1 deletions
|
@ -1165,7 +1165,7 @@ namespace Catch {
|
|||
makeTestCaseInfo(std::string const& _className,
|
||||
NameAndTags const& nameAndTags,
|
||||
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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue