opnsense-ports/devel/xparam/files/patch-lib__xparam__xp_hvl.h
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

14 lines
366 B
C

--- lib/xparam/xp_hvl.h.orig
+++ lib/xparam/xp_hvl.h
@@ -51,9 +51,9 @@
// t_ptr may be 0
void append_copy(const T* t_ptr) {
if (t_ptr)
- push_back( Handle<T>(get_copy_of(*t_ptr)) );
+ this->push_back( Handle<T>(get_copy_of(*t_ptr)) );
else
- push_back( Handle<T>() );
+ this->push_back( Handle<T>() );
}
// t_ptr may be 0