pico_standard_link\new_delete.cpp: warning: the program should also define 'void operator delete [](void*, unsigned int)' [-Wsized-deallocation]
workaround
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsized-deallocation"
// the code
#pragma GCC diagnostic pop