mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22621 Clang-Tidy: modernize-make-unique
https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang-tidy/checks/modernize/make-unique.html
This commit is contained in:
parent
1a4fc9b009
commit
3000bfb67e
2 changed files with 6 additions and 4 deletions
|
@ -4,6 +4,7 @@
|
|||
// Fuzzer for ICU RelativeDateTimeFormatter.
|
||||
|
||||
#include <cstring>
|
||||
#include <memory>
|
||||
|
||||
#include "fuzzer_utils.h"
|
||||
|
||||
|
@ -48,8 +49,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|||
context = validCapitalizations[
|
||||
static_cast<int>(context) %
|
||||
(sizeof(validCapitalizations) / sizeof(UDisplayContext))];
|
||||
formatter.reset(new icu::RelativeDateTimeFormatter(
|
||||
locale, nullptr, style, context, status));
|
||||
formatter =
|
||||
std::make_unique<icu::RelativeDateTimeFormatter>(locale, nullptr, style, context, status);
|
||||
|
||||
if (U_SUCCESS(status)) {
|
||||
URelativeDateTimeUnit unit;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// License & terms of use: http://www.unicode.org/copyright.html
|
||||
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <stack>
|
||||
|
||||
#include "filterrb.h"
|
||||
|
@ -150,7 +151,7 @@ SimpleRuleBasedPathFilter::Tree::Tree(const Tree& other)
|
|||
: fIncluded(other.fIncluded), fChildren(other.fChildren) {
|
||||
// Note: can't use the default copy assignment because of the std::unique_ptr
|
||||
if (other.fWildcard) {
|
||||
fWildcard.reset(new Tree(*other.fWildcard));
|
||||
fWildcard = std::make_unique<Tree>(*other.fWildcard);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -181,7 +182,7 @@ void SimpleRuleBasedPathFilter::Tree::applyRule(
|
|||
if (key == "*") {
|
||||
// Case 1: Wildcard
|
||||
if (!fWildcard) {
|
||||
fWildcard.reset(new Tree());
|
||||
fWildcard = std::make_unique<Tree>();
|
||||
}
|
||||
// Apply the rule to fWildcard and also to all existing children.
|
||||
it++;
|
||||
|
|
Loading…
Add table
Reference in a new issue