Skip to content

Commit 28201d2

Browse files
authored
Merge pull request #3169 from tautschnig/c_bool-default-constructor
c_bool_typet: Remove unused default constructor
2 parents ced655b + 284c0c3 commit 28201d2

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/util/std_types.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,10 +1624,6 @@ bool is_rvalue_reference(const typet &type);
16241624
class c_bool_typet:public bitvector_typet
16251625
{
16261626
public:
1627-
c_bool_typet():bitvector_typet(ID_c_bool)
1628-
{
1629-
}
1630-
16311627
explicit c_bool_typet(std::size_t width):
16321628
bitvector_typet(ID_c_bool, width)
16331629
{

0 commit comments

Comments
 (0)