Skip to content

Commit 4499c99

Browse files
author
Daniel Kroening
committed
expr2ct::convert_norep now takes an irep
1 parent a01d78c commit 4499c99

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
@@ -1616,7 +1616,7 @@ std::string expr2ct::convert_struct_member_value(
16161616
}
16171617

16181618
std::string expr2ct::convert_norep(
1619-
const exprt &src,
1619+
const irept &src,
16201620
unsigned &precedence)
16211621
{
16221622
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)