scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit bada193b9bd2f13dd7788b2664f000e7f4e75258
parent c97ecd8ee6431a55b0d6413bc8f5068ba1b4f197
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 25 Oct 2013 18:44:11 +0200

Remove unneeded continue

These continues are not needed.

Diffstat:
Mdecl.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/decl.c b/decl.c @@ -40,7 +40,6 @@ dirdcl(register struct ctype *tp, unsigned char ns) ; /* TODO: k&r function */ else /* TODO: prototyped function */; - continue; } else if (accept('[')) { unsigned len; @@ -53,7 +52,6 @@ dirdcl(register struct ctype *tp, unsigned char ns) } pushtype(len); pushtype(ARY); - continue; } else { return; }