Humidistat
Arduino firmware for a humidistat (humidity controller)
Loading...
Searching...
No Matches
new.cpp
Go to the documentation of this file.
1#if __cplusplus >= 201402L && ARDUINO_AVR_UNO
2#include <stdlib.h>
3
4void operator delete(void* ptr, size_t size) noexcept {
5 operator delete(ptr);
6}
7void operator delete[](void * ptr, size_t size) noexcept {
8 operator delete[](ptr);
9}
10#endif