mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Module::getImportedModules can now get public, private, or all imports.
...whereas before the only options were "public" and "all". No functionality change. Swift SVN r13849
This commit is contained in:
@@ -261,8 +261,8 @@ bool SerializedModuleLoader::isSerializedAST(StringRef data) {
|
||||
|
||||
void SerializedASTFile::getImportedModules(
|
||||
SmallVectorImpl<Module::ImportedModule> &imports,
|
||||
bool includePrivate) const {
|
||||
File.getImportedModules(imports, includePrivate);
|
||||
Module::ImportFilter filter) const {
|
||||
File.getImportedModules(imports, filter);
|
||||
}
|
||||
|
||||
void SerializedASTFile::collectLinkLibraries(
|
||||
|
||||
Reference in New Issue
Block a user