From 11964f8c2729ed00f580b8fb0acf02c8b9933915 Mon Sep 17 00:00:00 2001 From: Juerg Billeter Date: Sat, 19 Apr 2008 16:11:00 +0000 Subject: [PATCH] don't check for `pointer' struct 2008-04-19 Juerg Billeter * vala/valasemanticanalyzer.vala: don't check for `pointer' struct svn path=/trunk/; revision=1272 --- ChangeLog | 4 ++++ vala/valasemanticanalyzer.vala | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index dde0cbc..654984b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-04-19 Jürg Billeter + * vala/valasemanticanalyzer.vala: don't check for `pointer' struct + +2008-04-19 Jürg Billeter + Replace `pointer' by `void*' in all bindings and remove pointer struct from GLib bindings, fixes bug 510085 diff --git a/vala/valasemanticanalyzer.vala b/vala/valasemanticanalyzer.vala index be46ddb..659790f 100644 --- a/vala/valasemanticanalyzer.vala +++ b/vala/valasemanticanalyzer.vala @@ -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")); -- 2.7.4