Skip to content

Commit

Permalink
Rebased and fixed merge conflicts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Wilson committed Dec 14, 2012
1 parent a640f8f commit bbb496b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
2 changes: 0 additions & 2 deletions src/root/root.h
Expand Up @@ -236,8 +236,6 @@ struct OutBuffer : Object

int doindent, level, linehead;

int doindent, level, linehead;

OutBuffer();
~OutBuffer();
char *extractData();
Expand Down
20 changes: 0 additions & 20 deletions src/statement.c
Expand Up @@ -2860,17 +2860,9 @@ void IfStatement::toCBuffer(OutBuffer *buf, HdrGenState *hgs)
if (!elsebody->isScopeStatement())
buf->level++;
elsebody->toCBuffer(buf, hgs);
<<<<<<< HEAD
if (!elsebody->isScopeStatement())
buf->level--;
}
||||||| merged common ancestors
}
=======
if (!elsebody->isScopeStatement())
buf->level--;
}
>>>>>>> Initial DI generation improvements.
}

/******************************** ConditionalStatement ***************************/
Expand Down Expand Up @@ -3134,23 +3126,11 @@ void PragmaStatement::toCBuffer(OutBuffer *buf, HdrGenState *hgs)
buf->writenl();
buf->writeByte('{');
buf->writenl();
<<<<<<< HEAD
buf->level++;

||||||| merged common ancestors

=======
buf->level++;
>>>>>>> Initial DI generation improvements.
body->toCBuffer(buf, hgs);
<<<<<<< HEAD

buf->level--;
||||||| merged common ancestors

=======
buf->level--;
>>>>>>> Initial DI generation improvements.
buf->writeByte('}');
buf->writenl();
}
Expand Down

0 comments on commit bbb496b

Please sign in to comment.