in ie_exp.cpp, line 62, we have:
UT_ASSERT(m_sniffers.addItem (s, &ndx) == UT_OK);
but if we define NDEBUG, UT_ASSERT will expand to nothing, thus in
production conditions it will be equivalent to:
;
when I think that it should be equivalent to:
m_sniffers.addItem (s, &ndx);
Am I missing something?
Cheers,
--
Joaqu�n Cuenca Abela
[EMAIL PROTECTED]
- Re: About UT_ASSERT Joaquin Cuenca Abela
- Re: About UT_ASSERT Hubert Figuiere
- Re: About UT_ASSERT Dom Lachowicz
