summaryrefslogtreecommitdiff
path: root/databases/foundationdb/files/patch-flow_Deque.h
diff options
context:
space:
mode:
authorDave Cottlehuber <dch@FreeBSD.org>2020-05-31 22:13:32 +0000
committerDave Cottlehuber <dch@FreeBSD.org>2020-05-31 22:13:32 +0000
commit595818230970081ef0aea4c111d8688fa15de3c5 (patch)
tree8f2ca1a001d292e0b08a3bd3d851fe752a5f154f /databases/foundationdb/files/patch-flow_Deque.h
parent- Update to 0.169.1 (diff)
databases/foundationdb: update to 6.3.0
- use new CMake build framework - build compatible C libraries by default - partial TLS support - drop upstreamed patches Sponsored by: SkunkWerks, GmbH
Diffstat (limited to 'databases/foundationdb/files/patch-flow_Deque.h')
-rw-r--r--databases/foundationdb/files/patch-flow_Deque.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/databases/foundationdb/files/patch-flow_Deque.h b/databases/foundationdb/files/patch-flow_Deque.h
deleted file mode 100644
index d8c44c2229d4..000000000000
--- a/databases/foundationdb/files/patch-flow_Deque.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- flow/Deque.h.orig 2019-04-09 00:11:05 UTC
-+++ flow/Deque.h
-@@ -168,7 +168,7 @@ class Deque { (private)
- new (&newArr[i - begin]) T(std::move(arr[i&mask]));
- arr[i&mask].~T();
- }
-- aligned_free(arr);
-+ free(arr);
- arr = newArr;
- end -= begin;
- begin = 0;
-@@ -179,7 +179,7 @@ class Deque { (private)
- for (int i = begin; i != end; i++)
- arr[i&mask].~T();
- if(arr)
-- aligned_free(arr);
-+ free(arr);
- }
- };
-