blob: 65f9763d48a07868f7b2e0be457434b8b447a8ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- 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!!
|