I just tried to put some codes in my Juce project, this code containes “assert” commands in .ICC files.
The compiler rejects this “assert line”, why ?
Is JASSERT the only accepted command ?
I just tried to put some codes in my Juce project, this code containes “assert” commands in .ICC files.
The compiler rejects this “assert line”, why ?
Is JASSERT the only accepted command ?
Well, jassert is the only assertion that juce provides for you. If you want to use a different one, then that’s fine, but you’ll have to include the appropriate header files yourself.
#include <assert.h>
available on all platforms
Of course.
But well the trouble seemed to be deeper than that.
It’s over.
[quote]
Well, jassert is the only assertion that juce provides for you. [/quote]
What more than classical ‘assert’ ?