File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2221,7 +2221,8 @@ Decl *ModuleFile::getDecl(DeclID DID) {
2221
2221
}
2222
2222
2223
2223
// / Used to split up methods that would otherwise live in ModuleFile.
2224
- class swift ::DeclDeserializer {
2224
+ namespace swift {
2225
+ class DeclDeserializer {
2225
2226
template <typename T>
2226
2227
using Serialized = ModuleFile::Serialized<T>;
2227
2228
using TypeID = serialization::TypeID;
@@ -3873,6 +3874,7 @@ class swift::DeclDeserializer {
3873
3874
return dtor;
3874
3875
}
3875
3876
};
3877
+ }
3876
3878
3877
3879
Expected<Decl *>
3878
3880
ModuleFile::getDeclChecked (
@@ -4513,7 +4515,8 @@ Type ModuleFile::getType(TypeID TID) {
4513
4515
return deserialized.get ();
4514
4516
}
4515
4517
4516
- class swift ::TypeDeserializer {
4518
+ namespace swift {
4519
+ class TypeDeserializer {
4517
4520
using TypeID = serialization::TypeID;
4518
4521
4519
4522
ModuleFile &MF;
@@ -5290,6 +5293,7 @@ class swift::TypeDeserializer {
5290
5293
return UnboundGenericType::get (genericDecl, parentTy, ctx);
5291
5294
}
5292
5295
};
5296
+ }
5293
5297
5294
5298
Expected<Type> ModuleFile::getTypeChecked (TypeID TID) {
5295
5299
if (TID == 0 )
You can’t perform that action at this time.
0 commit comments