1

I'm trying to find the flag to disable this warning when building C with Xcode:

Implicit conversion loses integer precision

The UI doesn't seem to show which warning flag this is related to:

UI

Is there a way to find the respective flag in the UI?

rhughes
  • 9,257
  • 11
  • 59
  • 87

1 Answers1

1

It looks like the -Wno-conversion flag was what I was looking for.

rhughes
  • 9,257
  • 11
  • 59
  • 87