Hi!
I would like to try new C++ Wrappers classes (in iw++ folders) in IPP 2018.2, but found that those are using exceptions via unconditionally defining IW_ENABLE_EXCEPTIONS to 1. So, without modifying the iw++/iw_core.h it is not possible to use error codes instead of exceptions.
Can you please fix that?
It should be something like that (in iw++/iw_core.h):
#ifndef IW_ENABLE_EXCEPTIONS
#define IW_ENABLE_EXCEPTIONS 1 // IW++ can return all errors by exceptions or by classic return codes.
// Note that some errors cannot be returned by without exceptions and may be lost.
#endif