summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-08-13 15:55:27 -0400
committerJackLivio <jack@livio.io>2018-08-13 15:55:27 -0400
commit91bf82972a401fe90f0fd8d37056dc7a73d62565 (patch)
tree4963967656f5b5d00ee5592f42b2f8fa7cacc13f
parent4089a848ad9d1b5a6ea786859e2e21ce502fcafd (diff)
downloadsdl_core-91bf82972a401fe90f0fd8d37056dc7a73d62565.tar.gz
Fix Style
-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>