diff options
author | drh <drh@noemail.net> | 2007-04-06 18:23:17 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-04-06 18:23:17 +0000 |
commit | bb5f18d2ca13704d3a7e7b8ce51a677304a62f3d (patch) | |
tree | f0049262e034888f361e3290987c63b7dc277bcc /tool/lempar.c | |
parent | 15926590ed196daf2b28481914363a9fe9172a7c (diff) | |
download | sqlite-bb5f18d2ca13704d3a7e7b8ce51a677304a62f3d.tar.gz sqlite-bb5f18d2ca13704d3a7e7b8ce51a677304a62f3d.zip |
Additional coverage testing. (CVS 3823)
FossilOrigin-Name: 26b2e1aede3f776134b2d6e941d17a907843e650
Diffstat (limited to 'tool/lempar.c')
-rw-r--r-- | tool/lempar.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tool/lempar.c b/tool/lempar.c index 6eb8387a8..97d146d4c 100644 --- a/tool/lempar.c +++ b/tool/lempar.c @@ -210,21 +210,6 @@ static const char *const yyRuleName[] = { }; #endif /* NDEBUG */ -/* -** This function returns the symbolic name associated with a token -** value. -*/ -const char *ParseTokenName(int tokenType){ -#ifndef NDEBUG - if( tokenType>0 && tokenType<(sizeof(yyTokenName)/sizeof(yyTokenName[0])) ){ - return yyTokenName[tokenType]; - }else{ - return "Unknown"; - } -#else - return ""; -#endif -} #if YYSTACKDEPTH<=0 /* |