summaryrefslogtreecommitdiff
path: root/vala/valavartype.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2021-01-25 21:11:55 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2021-01-25 21:14:17 +0100
commitbb97ca55e499e47bd3b02113fca65d02d993ec88 (patch)
treedc2ac85ece7bc9003e3f7acd4fbc921d3d76a5b7 /vala/valavartype.vala
parentcc5a56e1959471d2a13011c4d407d336a261bf7c (diff)
downloadvala-bb97ca55e499e47bd3b02113fca65d02d993ec88.tar.gz
vala: Don't prepend "unowned" in VarType and leave that to the CodeWriter
Diffstat (limited to 'vala/valavartype.vala')
-rw-r--r--vala/valavartype.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valavartype.vala b/vala/valavartype.vala
index 7187fc2c9..dada3ca32 100644
--- a/vala/valavartype.vala
+++ b/vala/valavartype.vala
@@ -29,7 +29,7 @@ public class Vala.VarType : DataType {
}
public override string to_qualified_string (Scope? scope) {
- return (value_owned ? "var" : "unowned var");
+ return "var";
}
public override DataType copy () {