mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
devel/ptlib: Remove just-committed patch
The patch I just committed was built against the previous version of ptlib. THe patch does not even apply, so it must be removed to unbreak the port. Noticed-by: kwm
This commit is contained in:
parent
cdcfe19e12
commit
76940c6d07
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329031
@ -1,29 +0,0 @@
|
||||
--- include/ptlib/array.h.orig 2009-01-11 22:53:14.000000000 +0000
|
||||
+++ include/ptlib/array.h
|
||||
@@ -523,7 +523,7 @@ template <class T> class PScalarArray :
|
||||
T t;
|
||||
stream >> t;
|
||||
if (!stream.fail())
|
||||
- SetAt(index, t);
|
||||
+ this->SetAt(index, t);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1221,7 +1221,7 @@ class PBitArray : public PBYTEArray
|
||||
*/
|
||||
PBitArray & operator+=(
|
||||
PINDEX index ///< Position on the array to get value from.
|
||||
- ) { SetAt(index, PTrue); return *this; }
|
||||
+ ) { this->SetAt(index, PTrue); return *this; }
|
||||
|
||||
/**Set a bit to the array.
|
||||
|
||||
@@ -1230,7 +1230,7 @@ class PBitArray : public PBYTEArray
|
||||
*/
|
||||
PBitArray & operator-=(
|
||||
PINDEX index ///< Position on the array to get value from.
|
||||
- ) { SetAt(index, PFalse); return *this; }
|
||||
+ ) { this->SetAt(index, PFalse); return *this; }
|
||||
|
||||
/**Concatenate one array to the end of this array.
|
||||
This function will allocate a new array large enough for the existing
|
Loading…
Reference in New Issue
Block a user