Reformat codebase with 120 char limit (#583)

This commit is contained in:
Alex Kremer
2023-04-06 11:24:36 +01:00
committed by GitHub
parent e60fd3e58e
commit d816ef54ab
174 changed files with 5591 additions and 10450 deletions

View File

@@ -56,11 +56,9 @@ TagDecoratorFactory::make() const
switch (type_)
{
case Type::UINT:
return std::make_unique<TagDecorator<detail::UIntTagGenerator>>(
parent_);
return std::make_unique<TagDecorator<detail::UIntTagGenerator>>(parent_);
case Type::UUID:
return std::make_unique<TagDecorator<detail::UUIDTagGenerator>>(
parent_);
return std::make_unique<TagDecorator<detail::UUIDTagGenerator>>(parent_);
case Type::NONE:
default:
return std::make_unique<TagDecorator<detail::NullTagGenerator>>();