diff options
author | Jürg Billeter <j@bitron.ch> | 2008-08-14 21:22:53 +0000 |
---|---|---|
committer | Jürg Billeter <juergbi@src.gnome.org> | 2008-08-14 21:22:53 +0000 |
commit | 8621de12c043a7a7d959dbca9b70a5fa02c34781 (patch) | |
tree | 2f656d4d065c78104a0af9e4d93ece1b8ccb7463 /gee/iterable.vala | |
parent | 2166f7c312de0cd0e0f474cfff44c3293fea3098 (diff) | |
download | vala-8621de12c043a7a7d959dbca9b70a5fa02c34781.tar.gz |
Don't derive from GObject in libvala where not necessary to improve
2008-08-14 Jürg Billeter <j@bitron.ch>
Don't derive from GObject in libvala where not necessary to improve
compilation performance
svn path=/trunk/; revision=1757
Diffstat (limited to 'gee/iterable.vala')
-rw-r--r-- | gee/iterable.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gee/iterable.vala b/gee/iterable.vala index ca13109c2..998f59860 100644 --- a/gee/iterable.vala +++ b/gee/iterable.vala @@ -26,7 +26,7 @@ using GLib; * Implemented by classes that support a simple iteration over instances of the * collection. */ -public interface Gee.Iterable<G> : GLib.Object { +public interface Gee.Iterable<G> : CollectionObject { public abstract Type get_element_type (); /** |