forked from Lainports/freebsd-ports
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
11 lines
319 B
C++
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;
|
|
}
|
|
|