summaryrefslogtreecommitdiff
path: root/runtime/base/variant_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/base/variant_map.h')
-rw-r--r--runtime/base/variant_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/variant_map.h b/runtime/base/variant_map.h
index fe332d1e3b..c480b5162d 100644
--- a/runtime/base/variant_map.h
+++ b/runtime/base/variant_map.h
@@ -139,7 +139,7 @@ struct VariantMapKey : detail::VariantMapKeyRaw {
// then that is used. Otherwise, the default value for the type TValue{} is returned.
TValue CreateDefaultValue() const {
if (default_value_ == nullptr) {
- return TValue{}; // NOLINT [readability/braces] [4]
+ return TValue{};
} else {
return TValue(*default_value_);
}