summaryrefslogtreecommitdiff
path: root/vala/valablock.vala
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2008-04-13 19:01:07 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-04-13 19:01:07 +0000
commit3c5158fe2fe47fb84e8b6c86e46852afa1f6291a (patch)
treefe019ee827f8d2d95ca7350a0a013fc31d6e8eb5 /vala/valablock.vala
parent2c3dc37cdbb2ccd9ec5b1a78fe104b0accbf4013 (diff)
downloadvala-3c5158fe2fe47fb84e8b6c86e46852afa1f6291a.tar.gz
fix build when using non-null types
2008-04-13 Juerg Billeter <j@bitron.ch> * */*.vala: fix build when using non-null types svn path=/trunk/; revision=1212
Diffstat (limited to 'vala/valablock.vala')
-rw-r--r--vala/valablock.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valablock.vala b/vala/valablock.vala
index 9208ff7fc..20807f752 100644
--- a/vala/valablock.vala
+++ b/vala/valablock.vala
@@ -41,7 +41,7 @@ public class Vala.Block : Symbol, Statement {
*
* @param source reference to source code
*/
- public Block (SourceReference source_reference = null) {
+ public Block (SourceReference? source_reference = null) {
this.source_reference = source_reference;
}