diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2014-01-17 13:31:29 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2014-01-17 13:31:29 +0000 |
commit | 060e35f91cab2e0d7046e2cbe654e13307fe575d (patch) | |
tree | 9c5fa188966dac8e699adb2805087740958f9e2d | |
parent | 758e2533abf99e8a63de351ef338fbfa406038dc (diff) | |
download | ports-060e35f91cab2e0d7046e2cbe654e13307fe575d.tar.gz ports-060e35f91cab2e0d7046e2cbe654e13307fe575d.zip |
Notes
-rw-r--r-- | multimedia/mxflib/files/patch-mxflib_smartptr.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/multimedia/mxflib/files/patch-mxflib_smartptr.h b/multimedia/mxflib/files/patch-mxflib_smartptr.h new file mode 100644 index 000000000000..d801762cf102 --- /dev/null +++ b/multimedia/mxflib/files/patch-mxflib_smartptr.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- mxflib/smartptr.h.orig ++++ mxflib/smartptr.h +@@ -503,7 +503,7 @@ + } + + //! Comparison function to allow sorting by indexed value +- bool operator<(SmartPtr &Other) { return this.operator<(*Other->GetPtr()); } ++ bool operator<(SmartPtr &Other) { return this->operator<(*Other->GetPtr()); } + + //! Get a cast version of the pointer + /*! This is used via the SmartPtr_Cast() Macro to allow MSVC 6 to work!! |