mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
ec6ea5f784
Default to PBL as the data store (per the author's recommendations) Use OPTIONS helpers where possible Fix with clang PR: ports/184579 Approved by: stefan (maintainer)
21 lines
407 B
C
21 lines
407 B
C
--- src/includes/Ref.h.orig 2013-12-07 13:41:33.000000000 -0500
|
|
+++ src/includes/Ref.h 2013-12-07 13:41:49.000000000 -0500
|
|
@@ -189,7 +189,7 @@
|
|
|
|
CRef<T> &operator=(const CRef<T> &other)
|
|
{
|
|
- assign(other);
|
|
+ this->assign(other);
|
|
return *this;
|
|
}
|
|
|
|
@@ -245,7 +245,7 @@
|
|
|
|
Ref<T> &operator=(const Ref<T> &other)
|
|
{
|
|
- assign(other);
|
|
+ this->assign(other);
|
|
return *this;
|
|
}
|
|
|