5 Aug
2004
5 Aug
'04
1:54 a.m.
On Wed, Aug 04, 2004 at 09:42:17PM -0400, MenTaLguY wrote:
Unless I am much mistaken, aren't member functions whose bodies are defined within the class definition automatically inline?
In absence of a certain g++ flag, I believe they're automatically assumed to have inlining requested. But compilers don't always inline things one requests to be inlined. It seems there's something about the g_log call that g++-3.3 doesn't like inlining (maybe too many args, maybe the fact that it's variadic, maybe something in the rest of the g_assert macro).
pjrm.