diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-05 07:33:39 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-05 07:33:39 +0000 |
commit | e5620b87e1227fb97d08abe85b2f47c14ceae3cc (patch) | |
tree | 8727826b329ced4cbcf290b1a82f1ba0c569d25e /lib | |
parent | a5bc7ad15dba351ca2865858f1034dcf4aeead0e (diff) | |
download | klee-e5620b87e1227fb97d08abe85b2f47c14ceae3cc.tar.gz |
llvm::Casting support for Kleaver AST nodes.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Expr/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Expr/Parser.cpp b/lib/Expr/Parser.cpp index c0cc05d5..e059c675 100644 --- a/lib/Expr/Parser.cpp +++ b/lib/Expr/Parser.cpp @@ -1307,7 +1307,7 @@ void ParserImpl::Error(const char *Message, const Token &At) { // AST API // FIXME: Move out of parser. -Decl::Decl() {} +Decl::Decl(DeclKind _Kind) : Kind(_Kind) {} void QueryCommand::dump() { // FIXME: This is masking the difference between an actual query and |