diff options
Diffstat (limited to 'stp/AST/AST.cpp')
-rw-r--r-- | stp/AST/AST.cpp | 4 |
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(); |