diff options
Diffstat (limited to 'include/llvm/Analysis/Verifier.h')
-rw-r--r-- | include/llvm/Analysis/Verifier.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/Verifier.h b/include/llvm/Analysis/Verifier.h index 2feadca..eb12539 100644 --- a/include/llvm/Analysis/Verifier.h +++ b/include/llvm/Analysis/Verifier.h @@ -22,7 +22,7 @@ class Method; // error messages corresponding to the problem are added to the errorMsgs // vectors, and a value of true is returned. // -bool verify(const Module *M, vector<string> &ErrorMsgs); -bool verify(const Method *M, vector<string> &ErrorMsgs); +bool verify(const Module *M, std::vector<std::string> &ErrorMsgs); +bool verify(const Method *M, std::vector<std::string> &ErrorMsgs); #endif |