Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/new_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@

#include "new"

const std::nothrow_t std::nothrow = { };
#ifndef __AVR_ARCH__
const std::nothrow_t std::nothrow = { };
#endif

//Name selected to be compatable with g++ code
std::new_handler __new_handler;
Expand Down