File tree 2 files changed +0
-27
lines changed
2 files changed +0
-27
lines changed Original file line number Diff line number Diff line change @@ -2599,11 +2599,6 @@ class address_of_exprt:public unary_exprt
2599
2599
{
2600
2600
}
2601
2601
2602
- address_of_exprt ():
2603
- unary_exprt (ID_address_of, pointer_typet())
2604
- {
2605
- }
2606
-
2607
2602
exprt &object ()
2608
2603
{
2609
2604
return op0 ();
Original file line number Diff line number Diff line change @@ -1367,16 +1367,6 @@ inline c_bit_field_typet &to_c_bit_field_type(typet &type)
1367
1367
class pointer_typet :public bitvector_typet
1368
1368
{
1369
1369
public:
1370
- pointer_typet ():bitvector_typet(ID_pointer)
1371
- {
1372
- }
1373
-
1374
- // this one will go away; use the one with width
1375
- explicit pointer_typet (const typet &_subtype):
1376
- bitvector_typet(ID_pointer, _subtype)
1377
- {
1378
- }
1379
-
1380
1370
pointer_typet (const typet &_subtype, std::size_t width):
1381
1371
bitvector_typet (ID_pointer, _subtype, width)
1382
1372
{
@@ -1418,18 +1408,6 @@ inline pointer_typet &to_pointer_type(typet &type)
1418
1408
class reference_typet :public pointer_typet
1419
1409
{
1420
1410
public:
1421
- reference_typet ()
1422
- {
1423
- set (ID_C_reference, true );
1424
- }
1425
-
1426
- // this one will go away; use the one with width
1427
- explicit reference_typet (const typet &_subtype):
1428
- pointer_typet(_subtype)
1429
- {
1430
- set (ID_C_reference, true );
1431
- }
1432
-
1433
1411
reference_typet (const typet &_subtype, std::size_t _width):
1434
1412
pointer_typet (_subtype, _width)
1435
1413
{
You can’t perform that action at this time.
0 commit comments