mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-28 23:10:04 +00:00
Using 'alignas' in declarations might cause GCC to request for an implementation of 'operator delete(void*, unsigned long, std::align_val_t)' although it might actually never be called. This commit adds a dummy implementation to 'cxx/new_delete.cc' that does nothing more than printing an error to the log that a proper implementation is missing. This approach is coherent with our treatment of other global delete operators. Ref #4217