1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00

Removed an unused warning

git-svn-id: svn://svn.cc65.org/cc65/trunk@2156 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-05-11 22:04:52 +00:00
parent 24ed6e5e3d
commit faea6dd29c
2 changed files with 0 additions and 2 deletions

View File

@ -72,7 +72,6 @@ void WarningMsg (const FilePos* Pos, unsigned WarnNum, va_list ap)
unsigned char Level;
const char* Msg;
} Warnings [WARN_COUNT-1] = {
{ 1, "Mask error" },
{ 2, "Symbol `%s' is defined but never used" },
{ 2, "Symbol `%s' is imported but never used" },
{ 1, "Cannot track processor status byte" },

View File

@ -52,7 +52,6 @@
/* Warning numbers */
enum Warnings {
WARN_NONE, /* No warning */
WARN_MASK_ERROR,
WARN_SYM_NOT_REFERENCED,
WARN_IMPORT_NOT_REFERENCED,
WARN_CANNOT_TRACK_STATUS,