summaryrefslogtreecommitdiff
path: root/vala/valaphifunction.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2009-10-12 20:15:09 +0200
committerJürg Billeter <j@bitron.ch>2009-10-12 20:15:09 +0200
commit5c4bcf9aba99cbb7bd3fd0215750532733b221d1 (patch)
tree37f5587aa06c264cb0f9da0dd10d094a8cdceb10 /vala/valaphifunction.vala
parent04a8e745c78d3d2ccd84574d1a5f91481099cb3f (diff)
downloadvala-5c4bcf9aba99cbb7bd3fd0215750532733b221d1.tar.gz
Do not use Gee namespace to avoid conflict with libgee
Diffstat (limited to 'vala/valaphifunction.vala')
-rw-r--r--vala/valaphifunction.vala3
1 files changed, 1 insertions, 2 deletions
diff --git a/vala/valaphifunction.vala b/vala/valaphifunction.vala
index b95cc9fe6..081fca082 100644
--- a/vala/valaphifunction.vala
+++ b/vala/valaphifunction.vala
@@ -20,12 +20,11 @@
* Jürg Billeter <j@bitron.ch>
*/
-using Gee;
public class Vala.PhiFunction {
public LocalVariable original_variable { get; private set; }
- public Gee.List<LocalVariable?> operands { get; private set; }
+ public List<LocalVariable?> operands { get; private set; }
public PhiFunction (LocalVariable variable, int num_of_ops) {
this.original_variable = variable;