summaryrefslogtreecommitdiff
path: root/vapigen
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2021-10-23 15:27:12 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2021-10-23 15:27:12 +0200
commit0751a9e3bf46fc830d3e7ca3d0cfd3ae48846e68 (patch)
tree464634917a26c07c3aabacbe21f8d2c4a37111c2 /vapigen
parentd1232b99558aa7367605ab49e7a8511d4ea98162 (diff)
downloadvala-0751a9e3bf46fc830d3e7ca3d0cfd3ae48846e68.tar.gz
Use ErrorType-based collection for CodeNode.get_error_types()
Diffstat (limited to 'vapigen')
-rw-r--r--vapigen/valagidlparser.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vapigen/valagidlparser.vala b/vapigen/valagidlparser.vala
index 007896ec4..87ef022e9 100644
--- a/vapigen/valagidlparser.vala
+++ b/vapigen/valagidlparser.vala
@@ -1827,9 +1827,9 @@ public class Vala.GIdlParser : CodeVisitor {
m.add_parameter (async_param);
}
}
- var error_types = new ArrayList<DataType> ();
+ var error_types = new ArrayList<ErrorType> ();
finish_method.get_error_types (error_types, m.source_reference);
- foreach (DataType error_type in error_types) {
+ foreach (var error_type in error_types) {
m.add_error_type (error_type);
}
finish_methods.add (finish_method);