about summary refs log tree commit diff homepage
path: root/stp/AST/AST.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-05-02 20:20:31 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-05-02 20:20:31 +0000
commit632b647a30d36f2eec82a0d71f3ae6ecfd2c020b (patch)
treeed0d2a1431b3ca6670ed45c3037054924e866a03 /stp/AST/AST.cpp
parent20ec2186c190f753e62e2f2adca00742398e37ba (diff)
downloadklee-632b647a30d36f2eec82a0d71f3ae6ecfd2c020b.tar.gz
Remove bogus const applied to return type.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@102876 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'stp/AST/AST.cpp')
-rw-r--r--stp/AST/AST.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/stp/AST/AST.cpp b/stp/AST/AST.cpp
index e75620ec..63319de9 100644
--- a/stp/AST/AST.cpp
+++ b/stp/AST/AST.cpp
@@ -159,7 +159,7 @@ namespace BEEV {
   }
 
   // Get the name from a symbol (char *).  It's an error if kind != SYMBOL
-  const char * const ASTNode::GetName() const {
+  const char *ASTNode::GetName() const {
     if (GetKind() != SYMBOL)
       FatalError("GetName: Called GetName on a non-symbol: ", *this);
     return ((ASTSymbol *) _int_node_ptr)->GetName();    
@@ -871,7 +871,7 @@ namespace BEEV {
   }
 
   // Get the value of bvconst from a bvconst.  It's an error if kind != BVCONST
-  CBV const ASTNode::GetBVConst() const {
+  CBV ASTNode::GetBVConst() const {
     if(GetKind() != BVCONST)
       FatalError("GetBVConst: non bitvector-constant: ",*this);
     return ((ASTBVConst *) _int_node_ptr)->GetBVConst();