summaryrefslogtreecommitdiff
path: root/external/breakpad/c++20-allocator.patch
blob: 588d7db4dc7c928b627edab8521295c2b46231ee (plain)
1
2
3
4
5
6
7
8
9
10
11
--- src/common/memory.h
+++ src/common/memory.h
@@ -162,7 +162,7 @@
 // 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) {}