mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
fix missing comparison
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34413 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a2a14fcb8d
commit
81262af7e6
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@ GS_PRIVATE_INTERNAL(NSXMLDTDNode)
|
||||||
- (id) initWithKind: (NSXMLNodeKind)kind options: (NSUInteger)theOptions
|
- (id) initWithKind: (NSXMLNodeKind)kind options: (NSUInteger)theOptions
|
||||||
{
|
{
|
||||||
if (NSXMLEntityDeclarationKind == kind
|
if (NSXMLEntityDeclarationKind == kind
|
||||||
|| NSXMLElementDeclarationKind
|
|| NSXMLElementDeclarationKind == kind
|
||||||
|| NSXMLNotationDeclarationKind)
|
|| NSXMLNotationDeclarationKind == kind)
|
||||||
{
|
{
|
||||||
/* Create holder for internal instance variables so that we'll have
|
/* Create holder for internal instance variables so that we'll have
|
||||||
* all our ivars available rather than just those of the superclass.
|
* all our ivars available rather than just those of the superclass.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue