diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-01 20:51:41 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-01 20:51:41 +0000 |
commit | 184d84b07da9adcc49afa27781b0a120c00db44f (patch) | |
tree | 396eb57867eaf5b4d26a830bcec53f7699c95612 /include | |
parent | f80c516c58388be17cf1beba7867bd994898355d (diff) | |
download | external_llvm-184d84b07da9adcc49afa27781b0a120c00db44f.zip external_llvm-184d84b07da9adcc49afa27781b0a120c00db44f.tar.gz external_llvm-184d84b07da9adcc49afa27781b0a120c00db44f.tar.bz2 |
Add llvm-as project to Visual Studio
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Assembly/Parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h index dc1b17e..15d8d5b 100644 --- a/include/llvm/Assembly/Parser.h +++ b/include/llvm/Assembly/Parser.h @@ -36,7 +36,8 @@ Module *ParseAssemblyFile(const std::string &Filename);// throw (ParseException) // ParseException - For when an exceptional event is generated by the parser. // This class lets you print out the exception message // -struct ParseException { +class ParseException { +public: ParseException(const std::string &filename, const std::string &message, int LineNo = -1, int ColNo = -1); |