Remove PICO_FLASH_SIZE_BYTES warning from header as it breaks any build with -Werror; actual uses that care should warn instead (#229)

This commit is contained in:
Graham Sanderson
2021-03-04 20:20:56 -06:00
committed by graham sanderson
parent 4c768d2bb8
commit 04ee63428f
4 changed files with 3 additions and 6 deletions

View File

@ -13,7 +13,7 @@
uint32_t sd_table[SF_TABLE_V2_SIZE / 2];
#if !PICO_DOUBLE_SUPPORT_ROM_V1
static __attribute__((noreturn)) void missing_double_func_shim() {
static __attribute__((noreturn)) void missing_double_func_shim(void) {
panic("missing double function");
}
#endif