summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/value.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/value.h b/src/value.h
index c24e8257..299afa82 100644
--- a/src/value.h
+++ b/src/value.h
@@ -731,14 +731,14 @@ public:
* in_place_cast
* in_place_simplify
*/
- value_t cast(type_t cast_type) const {
+ value_t casted(type_t cast_type) const {
value_t temp(*this);
temp.in_place_cast(cast_type);
return temp;
}
void in_place_cast(type_t cast_type);
- value_t simplify() const {
+ value_t simplified() const {
value_t temp = *this;
temp.in_place_simplify();
return temp;