freebsd-ports/audio/epos-devel/files/patch-src__nnet__map.h
Martin Wilke 54659968ea - Fix build clang
PR:		180516
Submitted by:	maintainer
2013-07-16 05:48:14 +00:00

11 lines
181 B
C

--- src/nnet/map.h.orig
+++ src/nnet/map.h
@@ -25,7 +25,7 @@
else {
TData x;
x.first() = key;
- return insert (x)->second();
+ return this->insert (x)->second();
}
}