summaryrefslogtreecommitdiff
path: root/vala/valadelegatedestroyfield.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2020-10-24 14:11:43 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2020-10-24 14:53:21 +0200
commitb202924bd4981138e08eedc59269140192c7b21a (patch)
treef37b2e9a3d1cb0ef7da467f5c81a39f60f2690c2 /vala/valadelegatedestroyfield.vala
parenta74d7ac29f2fd0717fafd2f126c586b9b63dc71c (diff)
downloadvala-b202924bd4981138e08eedc59269140192c7b21a.tar.gz
vala: CodeNode.source_reference is optional, so let the API respect that
Diffstat (limited to 'vala/valadelegatedestroyfield.vala')
-rw-r--r--vala/valadelegatedestroyfield.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valadelegatedestroyfield.vala b/vala/valadelegatedestroyfield.vala
index e175b172a..3f2613cee 100644
--- a/vala/valadelegatedestroyfield.vala
+++ b/vala/valadelegatedestroyfield.vala
@@ -29,7 +29,7 @@ public class Vala.DelegateDestroyField : Field {
*
* @return newly created field
*/
- public DelegateDestroyField (SourceReference source_reference) {
+ public DelegateDestroyField (SourceReference? source_reference = null) {
base ("destroy", CodeContext.get ().analyzer.delegate_target_destroy_type, null, source_reference);
external = true;
}