From 2ef879a7e74e52a3d2114fb766d8b216391f59ce Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 26 Aug 2015 11:55:37 -0400 Subject: [PATCH] =?UTF-8?q?Changed=20fix=20for=20issue=20#74=20to=20only?= =?UTF-8?q?=20warn,=20and=20not=20exclude=20=E2=80=98type=E2=80=99=20attri?= =?UTF-8?q?butes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Removed noninheritedAttributesSansType method - Changed noninheritedAttributes method to warn upon ‘type’ attribute --- templates/machine.h.motemplate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/machine.h.motemplate b/templates/machine.h.motemplate index 60c8d288..8e85f0ab 100644 --- a/templates/machine.h.motemplate +++ b/templates/machine.h.motemplate @@ -171,7 +171,7 @@ extern const struct <$managedObjectClassName$>UserInfo {<$foreach UserInfo userI <$endforeach do$> @interface _<$managedObjectClassName$> (CoreDataGeneratedPrimitiveAccessors) -<$foreach Attribute noninheritedAttributesSansType do$> +<$foreach Attribute noninheritedAttributes do$> <$if Attribute.hasDefinedAttributeType$> - (<$Attribute.objectAttributeType$>)primitive<$Attribute.name.initialCapitalString$>; - (void)setPrimitive<$Attribute.name.initialCapitalString$>:(<$Attribute.objectAttributeType$>)value;