Github user jriskin commented on the pull request:

    https://github.com/apache/thrift/pull/539#issuecomment-148218066
  
    Awesome! I'll check it out now. FYI, coercing the type solved my namespace 
issue. e.g.
        for (id entry in self.feed.posts) {
            if ([entry isKindOfClass:[CTZNPostModel class]]) {
    // this next line creates a conflict on post_id since it's type is unknown 
at this point. 
                if([entry post_id] == self.current_post_id) { 
    // this fixes the problem...
                if([(CTZNPostModel *)entry post_id] == self.current_post_id) {
    
    Thanks for the quick fixes! 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to