On 9 April 2010 17:00, Richard Henderson wrote: > > I have no idea how to fix this. Ideas?
Maybe a dumb question, I don't know the context of this problem... Is <cassert> the only C++ header that causes a problem? <cassert> is exactly equivalent to <assert.h> because it only declares macros, which are not in namespace std anyway. So if that's the only problem, using <assert.h> instead of <cassert> would solve it.