summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 16:25:46 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 16:26:14 -0500
commit05bce078b6b5cfc64f10399da3a422d00fe6f790 (patch)
tree4ecea753041dcfde125d543e17a1435f3a59cbda /ingen
parent7d9819d811cf5752c5cf19b6908b8979c0e40aed (diff)
downloadingen-05bce078b6b5cfc64f10399da3a422d00fe6f790.tar.gz
ingen-05bce078b6b5cfc64f10399da3a422d00fe6f790.tar.bz2
ingen-05bce078b6b5cfc64f10399da3a422d00fe6f790.zip
Avoid static construction exception warning
Diffstat (limited to 'ingen')
-rw-r--r--ingen/Atom.hpp2
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.