changed first arg of parseBytecodeBuffer to unsigned char

llvm-svn: 2978
This commit is contained in:
Anand Shukla 2002-07-21 09:31:59 +00:00
parent dc7e934edb
commit b3f6bfe0df
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ class Module;
//
Module *ParseBytecodeFile(const std::string &Filename,
std::string *ErrorStr = 0);
Module *ParseBytecodeBuffer(const uchar *Buffer, unsigned BufferSize);
Module *ParseBytecodeBuffer(const unsigned char *Buffer, unsigned BufferSize);
#endif