Skip to content

Commit 9c5add4

Browse files
author
Daniel Kroening
committed
remove deprecated constructors for three bitvector types
1 parent c96e02a commit 9c5add4

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/util/std_types.h

-16
Original file line numberDiff line numberDiff line change
@@ -1134,10 +1134,6 @@ inline bitvector_typet &to_bitvector_type(typet &type)
11341134
class bv_typet:public bitvector_typet
11351135
{
11361136
public:
1137-
bv_typet():bitvector_typet(ID_bv)
1138-
{
1139-
}
1140-
11411137
explicit bv_typet(std::size_t width):bitvector_typet(ID_bv)
11421138
{
11431139
set_width(width);
@@ -1174,10 +1170,6 @@ inline bv_typet &to_bv_type(typet &type)
11741170
class unsignedbv_typet:public bitvector_typet
11751171
{
11761172
public:
1177-
unsignedbv_typet():bitvector_typet(ID_unsignedbv)
1178-
{
1179-
}
1180-
11811173
explicit unsignedbv_typet(std::size_t width):
11821174
bitvector_typet(ID_unsignedbv, width)
11831175
{
@@ -1220,10 +1212,6 @@ inline unsignedbv_typet &to_unsignedbv_type(typet &type)
12201212
class signedbv_typet:public bitvector_typet
12211213
{
12221214
public:
1223-
signedbv_typet():bitvector_typet(ID_signedbv)
1224-
{
1225-
}
1226-
12271215
explicit signedbv_typet(std::size_t width):
12281216
bitvector_typet(ID_signedbv, width)
12291217
{
@@ -1343,10 +1331,6 @@ inline const floatbv_typet &to_floatbv_type(const typet &type)
13431331
class c_bit_field_typet:public bitvector_typet
13441332
{
13451333
public:
1346-
c_bit_field_typet():bitvector_typet(ID_c_bit_field)
1347-
{
1348-
}
1349-
13501334
explicit c_bit_field_typet(const typet &subtype, std::size_t width):
13511335
bitvector_typet(ID_c_bit_field, subtype, width)
13521336
{

0 commit comments

Comments
 (0)