Skip to content

Commit 0d22160

Browse files
author
Daniel Kroening
committed
expr2ct::convert_norep now takes an irep
1 parent e5fbe4e commit 0d22160

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ansi-c/expr2c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ std::string expr2ct::convert_struct_member_value(
16141614
}
16151615

16161616
std::string expr2ct::convert_norep(
1617-
const exprt &src,
1617+
const irept &src,
16181618
unsigned &precedence)
16191619
{
16201620
lispexprt lisp;

src/ansi-c/expr2c_class.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ class expr2ct
248248
virtual std::string convert_constant(const constant_exprt &src, unsigned &precedence);
249249
virtual std::string convert_constant_bool(bool boolean_value);
250250

251-
std::string convert_norep(const exprt &src, unsigned &precedence);
251+
std::string convert_norep(const irept &src, unsigned &precedence);
252252

253253
virtual std::string convert_struct(const exprt &src, unsigned &precedence);
254254
std::string convert_union(const exprt &src, unsigned &precedence);

0 commit comments

Comments
 (0)