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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-09-11 04:22:58 +00:00
parent 249403f5fa
commit 46a981c3e2

View File

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