clean up initialization

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38629 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2015-06-12 23:30:26 +00:00
parent 1a519dc39d
commit 15b5d6052c

View file

@ -1,9 +1,10 @@
/*
** CodeParser.m
**
** Copyright (c) 2003-2014
** Copyright (c) 2003-2015
**
** Author: Yen-Ju <yjchenx@hotmail.com>
** Riccardo Mottola <rm@gnu.org>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
@ -43,6 +44,9 @@ typedef enum _CodeType {
- (id)init
{
self = [super init];
_handler = nil;
_uchar = NULL;
_length = 0;
return self;
}