2
0

Build fixes.

This commit is contained in:
Maarten Billemont
2020-09-03 13:56:10 -04:00
parent 2886e040a1
commit 968de6026f
2 changed files with 4 additions and 6 deletions

View File

@@ -213,12 +213,12 @@
- (BOOL)generated {
return self.type & MPResultTypeClassTemplate;
return (self.type & MPResultTypeClassTemplate) == MPResultTypeClassTemplate;
}
- (BOOL)stored {
return self.type & MPResultTypeClassStateful;
return (self.type & MPResultTypeClassStateful) == MPResultTypeClassStateful;
}
- (BOOL)transient {