]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
don't check for `pointer' struct
authorJuerg Billeter <j@bitron.ch>
Sat, 19 Apr 2008 16:11:00 +0000 (16:11 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sat, 19 Apr 2008 16:11:00 +0000 (16:11 +0000)
2008-04-19  Juerg Billeter  <j@bitron.ch>

* vala/valasemanticanalyzer.vala: don't check for `pointer' struct

svn path=/trunk/; revision=1272

ChangeLog
vala/valasemanticanalyzer.vala

index dde0cbc8cdef62f9226b52f4f047784cdc4bd9c2..654984bfb06cc125b090d46853fc5cbdbc4d1ea4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-19  Jürg Billeter  <j@bitron.ch>
+
+       * vala/valasemanticanalyzer.vala: don't check for `pointer' struct
+
 2008-04-19  Jürg Billeter  <j@bitron.ch>
 
        Replace `pointer' by `void*' in all bindings and remove pointer
index be46ddbb6929f5ebd546c6de3be58f2019cb0d93..659790f5d19565b25031cf8bcb2bc77d1b0ac7a9 100644 (file)
@@ -47,7 +47,6 @@ public class Vala.SemanticAnalyzer : CodeVisitor {
        DataType size_t_type;
        DataType unichar_type;
        DataType type_type;
-       Typesymbol pointer_type;
        Class object_type;
        Typesymbol initially_unowned_type;
        DataType glist_type;
@@ -82,8 +81,6 @@ public class Vala.SemanticAnalyzer : CodeVisitor {
                bool_type = new ValueType ((Typesymbol) root_symbol.scope.lookup ("bool"));
                string_type = new ClassType ((Class) root_symbol.scope.lookup ("string"));
 
-               pointer_type = (Typesymbol) root_symbol.scope.lookup ("pointer");
-
                int_type = new ValueType ((Typesymbol) root_symbol.scope.lookup ("int"));
                uint_type = new ValueType ((Typesymbol) root_symbol.scope.lookup ("uint"));
                ulong_type = new ValueType ((Typesymbol) root_symbol.scope.lookup ("ulong"));