Harden inspect message handling

Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-24 03:23:51 +00:00
parent 58e007a50f
commit e02da5ba4a
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ struct function : public function_base, function_traits<T>
std::string get_signature() const override
{
return util::type_name<target_t>::str();
return util::type_name<return_t>::str() + "(" + util::type_name<typename function::sig_t>::str() + ")";
};
bool is_compatible(xsub_stack& stack) const override