mcuboot
mcuboot copied to clipboard
Fix error with deprecated _Static_assert macro.
In C, when you don't include <assert.h>, the compiler treats static_assert as a keyword that maps to _Static_assert. Using static_assert is preferred because the same code will work in both C and C++.
Discussion open in #1792