From: Rico Tzschichholz Date: Fri, 11 Oct 2019 14:19:19 +0000 (+0200) Subject: libvaladoc: Fix ownership declarations of Constants X-Git-Tag: 0.47.1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09277771a73ff9e2331bc6a84a1959d9780f5c3c;p=thirdparty%2Fvala.git libvaladoc: Fix ownership declarations of Constants --- diff --git a/libvaladoc/api/typereference.vala b/libvaladoc/api/typereference.vala index 41b766e41..c328eaf39 100644 --- a/libvaladoc/api/typereference.vala +++ b/libvaladoc/api/typereference.vala @@ -62,6 +62,8 @@ public class Valadoc.Api.TypeReference : Item { return Ownership.OWNED; } return Ownership.DEFAULT; + } else if (type.parent_node is Vala.Constant) { + return Ownership.DEFAULT; } if (type.is_weak ()) { return Ownership.UNOWNED;