]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
vala: Fix circular reference in Property
authorPrinceton Ferro <princetonferro@gmail.com>
Sun, 1 Mar 2020 08:54:13 +0000 (09:54 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Sun, 1 Mar 2020 11:16:30 +0000 (12:16 +0100)
vala/valaproperty.vala

index 04f3d4958688db957bea98fc5cb3b4eae48de922..faa7fdf01e4844ff050e953eb6a45635e64fa5b0 100644 (file)
@@ -223,7 +223,7 @@ public class Vala.Property : Symbol, Lockable {
        private DataType _data_type;
 
        private weak Property _base_property;
-       private Property _base_interface_property;
+       private weak Property _base_interface_property;
        private bool base_properties_valid;
        PropertyAccessor? _get_accessor;
        PropertyAccessor? _set_accessor;