Change interface to use correct typedef so it will always compile.

llvm-svn: 16281
This commit is contained in:
Reid Spencer 2004-09-11 04:22:58 +00:00
parent a529d4eaa7
commit 14072a3f54
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ Module* llvm::AnalyzeBytecodeBuffer(
} }
bool llvm::GetBytecodeDependentLibraries(const std::string &fname, bool llvm::GetBytecodeDependentLibraries(const std::string &fname,
std::vector<std::string>& deplibs) { Module::LibraryListType& deplibs) {
try { try {
std::auto_ptr<ModuleProvider> AMP( getBytecodeModuleProvider(fname)); std::auto_ptr<ModuleProvider> AMP( getBytecodeModuleProvider(fname));
Module* M = AMP->releaseModule(); Module* M = AMP->releaseModule();