freebsd-ports/www/suphp/files/patch-src_SmartPtr.hpp
Matthias Fechner 9b238fe9cd Add PHP flavor support.
Add LICENSE
Fix portlint warnings (strip .so file, fix @exec in plist)
Regenerate patches with makepatch
Change maintainer as requested.

PR:		227378
Submitted by:	freebsd-ports@dan.me.uk
Reported by:	freebsd-ports@dan.me.uk
Reviewed by:	mfechner@FreeBSD.org
Approved by:	maintainer timeout
2018-10-20 11:33:29 +00:00

11 lines
319 B
C++

--- src/SmartPtr.hpp.orig 2007-03-13 14:17:02 UTC
+++ src/SmartPtr.hpp
@@ -150,7 +150,7 @@ namespace suPHP {
template<class T>
const SmartPtr<T>& suPHP::SmartPtr<T>::operator=(
const SmartPtr<T>& ref) {
- this.reset(ref.ptr);
+ this->reset(ref.ptr);
return *this;
}