Type that is only usable with new (std::nothrow) to avoid exceptions. This struct shall be inherited by all types in NVS that may be allocated dynamically (with new). NVS allocates memory at runtime. Because we use C++, we need to avoid the global ``operator new`` from libstdc++, since it throws exceptions and we compile NVS with ``-fno-exceptions``. We also need to avoid the global non-throwing version of that operator from libstdc++, since it is merely a wrapper around the original operator catching all exceptions. This struct removes the normal operator new from this and all types inheriting from it. It furthermore provides a custom version of operator new (..., const std::nothrow_t&) noexcept that will not use C++ exceptions. E.g., if you have a type MyType inheriting from ExceptionlessAllocatable, you want to use it as follows:
{c++}
MyType : public ExceptionlessAllocatable {
ExceptionlessAllocatable();
ExceptionlessAllocatable(int param);
};
// ...
MyType *m0 = new (std::nothrow) MyType;
MyType *m1 = new (std::nothrow) MyType(47);
// ...
delete m1;
delete m0;