summaryrefslogtreecommitdiffstats
path: root/src/Forge.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-08 19:40:27 +0100
committerDavid Robillard <d@drobilla.net>2019-12-08 21:08:24 +0100
commit484665f577267dac4ccd722bc28239a73c6efdb4 (patch)
tree2213a1fc015c1e06e056ec081256b46042d38b87 /src/Forge.cpp
parent6f1277f261a0fed20af10a8ee5804ee694962550 (diff)
downloadingen-484665f577267dac4ccd722bc28239a73c6efdb4.tar.gz
ingen-484665f577267dac4ccd722bc28239a73c6efdb4.tar.bz2
ingen-484665f577267dac4ccd722bc28239a73c6efdb4.zip
Cleanup: Add missing explicit initialisations
Diffstat (limited to 'src/Forge.cpp')
-rw-r--r--src/Forge.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Forge.cpp b/src/Forge.cpp
index 90106ad5..cc1b12c8 100644
--- a/src/Forge.cpp
+++ b/src/Forge.cpp
@@ -26,7 +26,8 @@
namespace ingen {
Forge::Forge(URIMap& map)
- : _map(map)
+ : LV2_Atom_Forge()
+ , _map(map)
{
lv2_atom_forge_init(this, &map.urid_map_feature()->urid_map);
}