Reputation: 1
I am trying to test my app in Xcode but every time I try to build it I get several Value Conversion Issues. The developer I worked with was able to open and work with the file without any issues. I get 8 errors in my libYAML files that say the following:
Value Conversion Issue Implicit conversion loses integer precision: 'long' to 'int'
Can anyone help?
Upvotes: 0
Views: 678
Reputation: 1861
That means you're assigning a long to an int, since long can store larger values than int, it might not fit into it. Why don't you change your int to long?
Upvotes: 0