style: Set clang-format width 100 (#2953)

This commit is contained in:
Ayaz Salikhov
2026-02-20 15:56:03 +00:00
committed by GitHub
parent 480264ff8f
commit 6ba58f42f0
575 changed files with 14315 additions and 6552 deletions

View File

@@ -60,7 +60,10 @@ std::optional<Error>
Array::addNull(std::optional<std::string_view> key)
{
if (not itemPattern_.isOptional() and not itemPattern_.hasValue()) {
return Error{key.value_or("Unknown_key"), "value for the array (or object field inside array) is required"};
return Error{
key.value_or("Unknown_key"),
"value for the array (or object field inside array) is required"
};
}
elements_.push_back(itemPattern_);