Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: compiled/StringMap.h

Issue 29613616: Issue 6064 - Put C++ code into a configurable namespace (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git
Patch Set: rebase Created Dec. 12, 2017, 12:45 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « compiled/String.h ('k') | compiled/StringScanner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 21
22 #include "base.h"
22 #include "Map.h" 23 #include "Map.h"
23 #include "String.h" 24 #include "String.h"
24 25
26 ABP_NS_BEGIN
27
25 namespace StringMap_internal 28 namespace StringMap_internal
26 { 29 {
27 struct StringSetEntry 30 struct StringSetEntry
28 { 31 {
29 typedef DependentString key_type; 32 typedef DependentString key_type;
30 typedef const String& key_type_cref; 33 typedef const String& key_type_cref;
31 typedef size_t size_type; 34 typedef size_t size_type;
32 35
33 key_type first; 36 key_type first;
34 37
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 super::erase(); 90 super::erase();
88 second = value_type(); 91 second = value_type();
89 } 92 }
90 }; 93 };
91 } 94 }
92 95
93 using StringSet = Set<StringMap_internal::StringSetEntry>; 96 using StringSet = Set<StringMap_internal::StringSetEntry>;
94 97
95 template<typename Value> 98 template<typename Value>
96 using StringMap = Map<StringMap_internal::StringMapEntry<Value>>; 99 using StringMap = Map<StringMap_internal::StringMapEntry<Value>>;
100
101 ABP_NS_END
OLDNEW
« no previous file with comments | « compiled/String.h ('k') | compiled/StringScanner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld