LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / sc / inc / stlalgorithm.hxx
blobf2143b9a84c7a99c54bc748b33e01030209f4abb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #pragma once
12 #include <limits>
14 #include <rtl/alloc.h>
16 namespace sc {
18 /**
19 * Custom allocator for STL container to ensure that the base address of
20 * allocated storage is aligned to a specified boundary.
22 template<typename T, size_t Alignment>
23 class AlignedAllocator
25 public:
26 typedef T value_type;
27 typedef size_t size_type;
28 typedef std::ptrdiff_t difference_type;
30 typedef T* pointer;
31 typedef const T* const_pointer;
32 typedef T* void_pointer;
34 typedef T& reference;
35 typedef const T& const_reference;
37 template<typename Type2>
38 struct rebind
40 typedef AlignedAllocator<Type2,Alignment> other;
43 AlignedAllocator() {}
45 template<typename Type2>
46 AlignedAllocator(const AlignedAllocator<Type2,Alignment>&) {}
48 static void construct(T* p, const value_type& val) { new(p) value_type(val); }
49 static void destroy(T* p)
51 p->~value_type();
52 (void)p; // avoid bogus MSVC '12 "unreferenced formal parameter" warning
55 static size_type max_size()
57 return std::numeric_limits<size_type>::max() / sizeof(value_type);
60 bool operator== (const AlignedAllocator&) const { return true; }
61 bool operator!= (const AlignedAllocator&) const { return false; }
63 static pointer allocate(size_type n)
65 return static_cast<pointer>(rtl_allocateAlignedMemory(Alignment, n*sizeof(value_type)));
68 static void deallocate(pointer p, size_type)
70 rtl_freeAlignedMemory(p);
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */