Value Conversion Issue error on app build

680 Views Asked by At

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?

1

There are 1 best solutions below

1
On

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?