mirror of
https://git.freebsd.org/ports.git
synced 2025-07-03 02:20:33 -04:00
11 lines
407 B
C++
11 lines
407 B
C++
--- include/opkele/discovery.h.orig 2008-06-25 20:50:26.000000000 +0000
|
|
+++ include/opkele/discovery.h
|
|
@@ -21,7 +21,7 @@ namespace opkele {
|
|
public:
|
|
|
|
inline _DT& add(long priority,const _DT& d) {
|
|
- return insert(typename map_type::value_type(priority,d))->second;
|
|
+ return this->insert(typename map_type::value_type(priority,d))->second;
|
|
}
|
|
|
|
bool has_value(const _DT& d) const {
|