summaryrefslogtreecommitdiffstats
path: root/external/breakpad/c++20-allocator.patch
blob: 245fac9e22c3a0993239f7c821dcf8f64d6be028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff -u -p -d -N -r breakpad.sav/src/common/memory_allocator.h breakpad/src/common/memory_allocator.h
--- src/common/memory_allocator.h	2021-04-07 19:12:50.357462734 +0200
+++ src/common/memory_allocator.h	2021-04-07 19:45:05.490291766 +0200
@@ -161,7 +161,7 @@ class PageAllocator {
 // Wrapper to use with STL containers
 template <typename T>
 struct PageStdAllocator : public std::allocator<T> {
-  typedef typename std::allocator<T>::pointer pointer;
+  typedef T* pointer;
   typedef typename std::allocator<T>::size_type size_type;
 
   explicit PageStdAllocator(PageAllocator& allocator) : allocator_(allocator),