diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2020-06-11 15:07:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-11 15:07:50 +0200 |
commit | 71c3f9920102991dc7b0492482fb08d51881e44a (patch) | |
tree | f6eff339577a4690f72b0a9c1ad64c7653ebfede | |
parent | 9568c6308f9a4fc2e2c2eb7563f6a3c8882f9e25 (diff) | |
parent | d1ae194f8d82027cd6cbe35e32111550c9bba9fd (diff) |
Merge pull request #340 from eudoxos/header-new
Add "new" proxy header for compatibility with c++-standard #include<new>
-rw-r--r-- | cores/arduino/new | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cores/arduino/new b/cores/arduino/new new file mode 100644 index 0000000..aa8ecb5 --- /dev/null +++ b/cores/arduino/new @@ -0,0 +1,5 @@ +/* +this header is for compatibility with standard c++ header names +so that #include<new> works as expected +*/ +#include "new.h" |