From: Evan Nemerson Date: Thu, 8 Apr 2010 04:42:52 +0000 (-0700) Subject: Make argument of NullType constructor nullable X-Git-Tag: 0.8.1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed3725b4aba6a253f92142aa153adc9056ecfa8e;p=thirdparty%2Fvala.git Make argument of NullType constructor nullable --- diff --git a/vala/valanulltype.vala b/vala/valanulltype.vala index cbe041953..ca2bce61f 100644 --- a/vala/valanulltype.vala +++ b/vala/valanulltype.vala @@ -26,7 +26,7 @@ using GLib; * The type of the null literal. */ public class Vala.NullType : ReferenceType { - public NullType (SourceReference source_reference) { + public NullType (SourceReference? source_reference) { this.nullable = true; this.source_reference = source_reference; }