summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/smart_objects/include/smart_objects/enum_schema_item.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/smart_objects/include/smart_objects/enum_schema_item.h b/src/components/smart_objects/include/smart_objects/enum_schema_item.h
index 0b699349ba..2a4bd5c572 100644
--- a/src/components/smart_objects/include/smart_objects/enum_schema_item.h
+++ b/src/components/smart_objects/include/smart_objects/enum_schema_item.h
@@ -297,7 +297,8 @@ TEnumSchemaItem<EnumType>::createWithSignatures(
const std::map<EnumType, std::vector<ElementSignature> >& ElementSignatures,
const TSchemaItemParameter<EnumType>& DefaultValue) {
return std::shared_ptr<TEnumSchemaItem<EnumType> >(
- new TEnumSchemaItem<EnumType>(AllowedElements, DefaultValue, ElementSignatures));
+ new TEnumSchemaItem<EnumType>(
+ AllowedElements, DefaultValue, ElementSignatures));
}
template <typename EnumType>