File tree 1 file changed +0
-16
lines changed
1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -1134,10 +1134,6 @@ inline bitvector_typet &to_bitvector_type(typet &type)
1134
1134
class bv_typet :public bitvector_typet
1135
1135
{
1136
1136
public:
1137
- bv_typet ():bitvector_typet(ID_bv)
1138
- {
1139
- }
1140
-
1141
1137
explicit bv_typet (std::size_t width):bitvector_typet(ID_bv)
1142
1138
{
1143
1139
set_width (width);
@@ -1174,10 +1170,6 @@ inline bv_typet &to_bv_type(typet &type)
1174
1170
class unsignedbv_typet :public bitvector_typet
1175
1171
{
1176
1172
public:
1177
- unsignedbv_typet ():bitvector_typet(ID_unsignedbv)
1178
- {
1179
- }
1180
-
1181
1173
explicit unsignedbv_typet (std::size_t width):
1182
1174
bitvector_typet(ID_unsignedbv, width)
1183
1175
{
@@ -1220,10 +1212,6 @@ inline unsignedbv_typet &to_unsignedbv_type(typet &type)
1220
1212
class signedbv_typet :public bitvector_typet
1221
1213
{
1222
1214
public:
1223
- signedbv_typet ():bitvector_typet(ID_signedbv)
1224
- {
1225
- }
1226
-
1227
1215
explicit signedbv_typet (std::size_t width):
1228
1216
bitvector_typet(ID_signedbv, width)
1229
1217
{
@@ -1343,10 +1331,6 @@ inline const floatbv_typet &to_floatbv_type(const typet &type)
1343
1331
class c_bit_field_typet :public bitvector_typet
1344
1332
{
1345
1333
public:
1346
- c_bit_field_typet ():bitvector_typet(ID_c_bit_field)
1347
- {
1348
- }
1349
-
1350
1334
explicit c_bit_field_typet (const typet &subtype, std::size_t width):
1351
1335
bitvector_typet(ID_c_bit_field, subtype, width)
1352
1336
{
You can’t perform that action at this time.
0 commit comments