Skip to content

Commit df544aa

Browse files
authored
Merge pull request #5562 from tautschnig/remove-deprecated-byte_update
Remove deprecated byte_update_exprt non-const methods
2 parents b719a2c + bd1ec8d commit df544aa

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/util/byte_operators.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,6 @@ class byte_update_exprt : public ternary_exprt
9292
"byte_update_exprt: Invalid ID");
9393
}
9494

95-
DEPRECATED(SINCE(2019, 5, 21, "use set_op or as_const instead"))
96-
exprt &op() { return op0(); }
97-
DEPRECATED(SINCE(2019, 5, 21, "use set_offset or as_const instead"))
98-
exprt &offset() { return op1(); }
99-
DEPRECATED(SINCE(2019, 5, 21, "use set_value or as_const instead"))
100-
exprt &value() { return op2(); }
101-
10295
void set_op(exprt e)
10396
{
10497
op0() = std::move(e);

0 commit comments

Comments
 (0)