summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-21 18:09:47 +0100
committerDavid Robillard <d@drobilla.net>2018-01-21 18:09:47 +0100
commit97592c2cf975295b9058e08b5fd9e45b3205ae5c (patch)
treed3837a9e580bec674d56699c17095b2fdbc9b2a8 /ingen
parentc02be4ee13fe5f4143339b2f804603de7e632fc4 (diff)
downloadingen-97592c2cf975295b9058e08b5fd9e45b3205ae5c.tar.gz
ingen-97592c2cf975295b9058e08b5fd9e45b3205ae5c.tar.bz2
ingen-97592c2cf975295b9058e08b5fd9e45b3205ae5c.zip
Fix mismatched struct/class declarations
Diffstat (limited to 'ingen')
-rw-r--r--ingen/URIMap.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/URIMap.hpp b/ingen/URIMap.hpp
index fc402c2c..90c5f0ac 100644
--- a/ingen/URIMap.hpp
+++ b/ingen/URIMap.hpp
@@ -84,8 +84,8 @@ public:
SPtr<URIDUnmapFeature> urid_unmap_feature() { return _urid_unmap_feature; }
private:
- friend class URIDMapFeature;
- friend class URIDUnMapFeature;
+ friend struct URIDMapFeature;
+ friend struct URIDUnMapFeature;
SPtr<URIDMapFeature> _urid_map_feature;
SPtr<URIDUnmapFeature> _urid_unmap_feature;