File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -164,9 +164,7 @@ equation_symbol_mappingt::find_equations(const exprt &expr)
164
164
}
165
165
166
166
// / Construct a string_builtin_functiont object from a function application
167
- // / \return a unique pointer to the created object, this unique pointer is empty
168
- // / if the function does not correspond to one of the supported
169
- // / builtin_functions.
167
+ // / \return a unique pointer to the created object
170
168
static std::unique_ptr<string_builtin_functiont> to_string_builtin_function (
171
169
const function_application_exprt &fun_app,
172
170
array_poolt &array_pool)
@@ -187,7 +185,8 @@ static std::unique_ptr<string_builtin_functiont> to_string_builtin_function(
187
185
return util_make_unique<string_concat_char_builtin_functiont>(
188
186
fun_app.arguments (), array_pool);
189
187
190
- return {};
188
+ return util_make_unique<string_builtin_function_with_no_evalt>(
189
+ fun_app.arguments (), array_pool);
191
190
}
192
191
193
192
string_dependenciest::string_nodet &
You can’t perform that action at this time.
0 commit comments