diff options
author | Jürg Billeter <j@bitron.ch> | 2009-10-12 20:15:09 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2009-10-12 20:15:09 +0200 |
commit | 5c4bcf9aba99cbb7bd3fd0215750532733b221d1 (patch) | |
tree | 37f5587aa06c264cb0f9da0dd10d094a8cdceb10 /vala/valaattribute.vala | |
parent | 04a8e745c78d3d2ccd84574d1a5f91481099cb3f (diff) | |
download | vala-5c4bcf9aba99cbb7bd3fd0215750532733b221d1.tar.gz |
Do not use Gee namespace to avoid conflict with libgee
Diffstat (limited to 'vala/valaattribute.vala')
-rw-r--r-- | vala/valaattribute.vala | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vala/valaattribute.vala b/vala/valaattribute.vala index 4144089ec..32f475ff9 100644 --- a/vala/valaattribute.vala +++ b/vala/valaattribute.vala @@ -21,7 +21,6 @@ */ using GLib; -using Gee; /** * Represents an attribute specified in the source code. @@ -35,7 +34,7 @@ public class Vala.Attribute : CodeNode { /** * Contains all specified attribute arguments. */ - public Gee.Map<string,Expression> args = new Gee.HashMap<string,Expression> (str_hash, str_equal); + public Vala.Map<string,Expression> args = new HashMap<string,Expression> (str_hash, str_equal); /** * Creates a new attribute. |