summarylogtreecommitdiffstats
path: root/shared_ptr.diff
diff options
context:
space:
mode:
authorMr.Smith19742023-12-04 13:35:00 +0300
committerMr.Smith19742023-12-04 13:35:00 +0300
commitb6ad2dc59a489f0fb67b8d5e92a4c4a1b16e7691 (patch)
tree2b82bce1caff433584933db9f374c875a1cae12e /shared_ptr.diff
parenta0d0bdb8f05ac5f60c6ddff3306806b834da5318 (diff)
downloadaur-b6ad2dc59a489f0fb67b8d5e92a4c4a1b16e7691.tar.gz
updated build
Diffstat (limited to 'shared_ptr.diff')
-rw-r--r--shared_ptr.diff11
1 files changed, 0 insertions, 11 deletions
diff --git a/shared_ptr.diff b/shared_ptr.diff
deleted file mode 100644
index 3d70cbb126ee..000000000000
--- a/shared_ptr.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/libgambit/shared_ptr.h
-+++ b/src/libgambit/shared_ptr.h
-@@ -131,7 +131,7 @@ template <class T> class weak_ptr {
- long use_count(void) const { return *m_count; }
- bool expired(void) const { return *m_count == 0; }
-
-- void swap(const weak_ptr<T> &other) // never throws
-+ void swap(weak_ptr<T> &other) // never throws
- {
- std::swap(m_ptr, other.m_ptr);
- std::swap(m_count, other.m_count);