Skip to content

Commit

Permalink
add operator delete
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp committed May 8, 2024
1 parent 2df688d commit 3fc43b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion LiquidCrystal_AIP31068_SPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
#include "LiquidCrystal_AIP31068_SPI.h"
#include <inttypes.h>
#include <SoftSPIB.h>
#include <stddef.h>

void operator delete(void* ptr, unsigned int) noexcept {
free(ptr);
}

#if defined(ARDUINO) && ARDUINO >= 100

Expand Down

0 comments on commit 3fc43b7

Please sign in to comment.