diff options
-rw-r--r-- | ingen/Atom.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/Atom.hpp b/ingen/Atom.hpp index b7b418e3..5e90903a 100644 --- a/ingen/Atom.hpp +++ b/ingen/Atom.hpp @@ -43,7 +43,7 @@ namespace Ingen { */ class INGEN_API Atom { public: - Atom() { _atom.size = 0; _atom.type = 0; _body.ptr = nullptr; } + Atom() noexcept { _atom.size = 0; _atom.type = 0; _body.ptr = nullptr; } ~Atom() { dealloc(); } /** Construct a raw atom. |