summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-01 20:51:41 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-01 20:51:41 +0000
commit184d84b07da9adcc49afa27781b0a120c00db44f (patch)
tree396eb57867eaf5b4d26a830bcec53f7699c95612 /include/llvm/Assembly
parentf80c516c58388be17cf1beba7867bd994898355d (diff)
downloadllvm-184d84b07da9adcc49afa27781b0a120c00db44f.tar.gz
llvm-184d84b07da9adcc49afa27781b0a120c00db44f.tar.bz2
llvm-184d84b07da9adcc49afa27781b0a120c00db44f.tar.xz
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/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h
index dc1b17eb50..15d8d5b8d7 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);