Skip to content

Commit 3f9f4d7

Browse files
author
Daniel Kroening
committed
expr2ct::convert_norep now takes an irep
1 parent c350ede commit 3f9f4d7

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
@@ -1583,7 +1583,7 @@ std::string expr2ct::convert_struct_member_value(
15831583
}
15841584

15851585
std::string expr2ct::convert_norep(
1586-
const exprt &src,
1586+
const irept &src,
15871587
unsigned &precedence)
15881588
{
15891589
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)