Skip to content

Commit

Permalink
Clean up unused parameter warnings (earlephilhower#2624)
Browse files Browse the repository at this point in the history
  • Loading branch information
earlephilhower authored Nov 19, 2024
1 parent 322a1af commit 996c3bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cores/rp2040/malloc-lock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,13 @@ extern "C" void *pcalloc(size_t count, size_t size) {
#else
// No PSRAM, always fail
extern "C" void *pmalloc(size_t size) {
(void) size;
return nullptr;
}

extern "C" void *pcalloc(size_t count, size_t size) {
(void) count;
(void) size;
return nullptr;
}
#endif
Expand Down

0 comments on commit 996c3bf

Please sign in to comment.