I have to interface with some C code from C++ class constructor (Intel library)
class A{
A{
x = ippiMalloc();
if(x==NULL) ...
}
}
In the constructor malloc function (intel version) is used. If ippiMalloc function do not succeed what is the correct way to handle it. Throw exception?