aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bytecode/Reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Bytecode/Reader.h')
-rw-r--r--include/llvm/Bytecode/Reader.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Bytecode/Reader.h b/include/llvm/Bytecode/Reader.h
index 2ef2532d4d..7cd2365c98 100644
--- a/include/llvm/Bytecode/Reader.h
+++ b/include/llvm/Bytecode/Reader.h
@@ -18,8 +18,9 @@ class Module;
// Parse and return a class...
//
-Module *ParseBytecodeFile(const string &Filename, string *ErrorStr = 0);
+Module *ParseBytecodeFile(const std::string &Filename,
+ std::string *ErrorStr = 0);
Module *ParseBytecodeBuffer(const char *Buffer, unsigned BufferSize,
- string *ErrorStr = 0);
+ std::string *ErrorStr = 0);
#endif