*/
public bool is_inline { get; set; }
- public bool returns_floating_reference { get; set; }
+ public bool returns_floating_reference {
+ get {
+ return get_attribute_bool ("CCode", "returns_floating_reference");
+ }
+ set {
+ set_attribute_bool ("CCode", "returns_floating_reference", value);
+ }
+ }
/**
* Specifies whether the C method returns a new instance pointer which
if (a.has_argument ("simple_generics")) {
simple_generics = a.get_bool ("simple_generics");
}
- if (a.has_argument ("returns_floating_reference")) {
- returns_floating_reference = a.get_bool ("returns_floating_reference");
- }
if (a.has_argument ("type")) {
custom_return_type_cname = a.get_string ("type");
}