about summary refs log tree commit diff homepage
path: root/stp/AST/AST.h
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.h
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.h')
-rw-r--r--stp/AST/AST.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/stp/AST/AST.h b/stp/AST/AST.h
index 4277029e..3052107f 100644
--- a/stp/AST/AST.h
+++ b/stp/AST/AST.h
@@ -191,11 +191,11 @@ namespace BEEV {
     };  
 
     // Get the name from a symbol (char *).  It's an error if kind != SYMBOL
-    const char * const GetName() const;
+    const char *GetName() const;
 
     //Get the BVCONST value
 #ifndef NATIVE_C_ARITH
-    const CBV GetBVConst() const;
+    CBV GetBVConst() const;
 #else
     unsigned long long int GetBVConst() const;
 #endif
@@ -234,7 +234,7 @@ namespace BEEV {
     types GetType(void) const;
 
     // Hash is pointer value of _int_node_ptr.
-    const size_t Hash() const{ 
+    size_t Hash() const{ 
       return (size_t) _int_node_ptr; 
       //return GetNodeNum(); 
     }
@@ -346,7 +346,7 @@ namespace BEEV {
     // table entry so it can be deleted without looking it up again.
     void DecRef();
 
-    virtual const Kind GetKind() const { return _kind; }
+    virtual Kind GetKind() const { return _kind; }
 
     virtual ASTVec const &GetChildren() const { return _children; }
 
@@ -514,7 +514,7 @@ namespace BEEV {
       return (strcmp(sym1._name, sym2._name) == 0);
     }
 
-    const char * const GetName() const{return _name;}  
+    const char *GetName() const{return _name;}  
 
     // Print function for symbol -- return name */
     virtual void nodeprint(ostream& os) { os << _name;}
@@ -1478,7 +1478,7 @@ namespace BEEV {
 
     //looksup a MINISAT var from the minisat-var memo-table. if none
     //exists, then creates one.
-    const MINISAT::Var LookupOrCreateSATVar(MINISAT::Solver& S, const ASTNode& n);
+    MINISAT::Var LookupOrCreateSATVar(MINISAT::Solver& S, const ASTNode& n);
 
     // Memo table for CheckBBandCNF debugging function
     ASTNodeMap CheckBBandCNFMemo;