mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
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)
20 lines
407 B
C
20 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;
|
|
}
|
|
|