Error: cast from ‘RGF*’ to ‘int’ loses precision#
This happens with gcc4 on 64 bit systems.
You are likely doing something like
foo = (int)bar;
Instead, do
foo = (long)bar;
C/C++ CategoryComputing.C
This happens with gcc4 on 64 bit systems.
You are likely doing something like
foo = (int)bar;
Instead, do
foo = (long)bar;