File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -273,20 +273,6 @@ class SwiftLookupTable {
273
273
return bits | 0x01 ;
274
274
}
275
275
276
- // / Encode a declaration ID as an entry in the table.
277
- static uintptr_t encodeDeclID (clang::serialization::DeclID id) {
278
- auto upper = static_cast <uintptr_t >(id) << 2 ;
279
- assert (upper >> 2 == id);
280
- return upper | 0x02 ;
281
- }
282
-
283
- // / Encode a macro ID as an entry in the table.
284
- static uintptr_t encodeMacroID (clang::serialization::MacroID id) {
285
- auto upper = static_cast <uintptr_t >(id) << 2 ;
286
- assert (upper >> 2 == id);
287
- return upper | 0x02 | 0x01 ;
288
- }
289
-
290
276
private:
291
277
// / A table mapping from the base name of Swift entities to all of
292
278
// / the C entities that have that name, in all contexts.
You can’t perform that action at this time.
0 commit comments