Comment # 5
on bug 9055
from Guy Harris
(In reply to comment #2)
> Yes, there should be G_GINT32_CONSTANT but this is not defined.
...because it's not necessary, unlike G_GINT64_CONSTANT. In all of the
platforms on which GLib can work, "int" is 32 bits and, therefore, you don't
need to add a suffix to a constant to have the compiler not complain about it
being too big to fit into an int. For 64-bit values, you have to add a suffix,
and the suffix is compiler-dependent (L, LL, or i64).
You are receiving this mail because:
- You are watching all bug changes.