OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 #pragma once | 18 #pragma once |
19 | 19 |
20 #include <cstddef> | 20 #include <cstddef> |
21 #include <climits> | 21 #include <climits> |
22 | 22 |
| 23 #include "base.h" |
23 #include "Map.h" | 24 #include "Map.h" |
24 | 25 |
| 26 ABP_NS_BEGIN |
| 27 |
25 namespace Uint32Map_internal | 28 namespace Uint32Map_internal |
26 { | 29 { |
27 struct Uint32SetEntry | 30 struct Uint32SetEntry |
28 { | 31 { |
29 public: | 32 public: |
30 typedef uint32_t key_type; | 33 typedef uint32_t key_type; |
31 typedef key_type key_type_cref; | 34 typedef key_type key_type_cref; |
32 typedef size_t size_type; | 35 typedef size_t size_type; |
33 | 36 |
34 protected: | 37 protected: |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 super::erase(); | 90 super::erase(); |
88 second = value_type(); | 91 second = value_type(); |
89 } | 92 } |
90 }; | 93 }; |
91 } | 94 } |
92 | 95 |
93 using Uint32Set = Set<Uint32Map_internal::Uint32SetEntry>; | 96 using Uint32Set = Set<Uint32Map_internal::Uint32SetEntry>; |
94 | 97 |
95 template<typename Value> | 98 template<typename Value> |
96 using Uint32Map = Map<Uint32Map_internal::Uint32MapEntry<Value>>; | 99 using Uint32Map = Map<Uint32Map_internal::Uint32MapEntry<Value>>; |
| 100 |
| 101 ABP_NS_END |
OLD | NEW |