Skip to content

Commit 715d67c

Browse files
author
Daniel Kroening
committed
expr2ct::convert_norep now takes an irep
1 parent 2036bad commit 715d67c

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
@@ -1661,7 +1661,7 @@ std::string expr2ct::convert_struct_member_value(
16611661
}
16621662

16631663
std::string expr2ct::convert_norep(
1664-
const exprt &src,
1664+
const irept &src,
16651665
unsigned &precedence)
16661666
{
16671667
lispexprt lisp;

src/ansi-c/expr2c_class.h

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

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

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

0 commit comments

Comments
 (0)