1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 21:19:24 +00:00

Remove unused methods.

This commit is contained in:
Bruno Haible
2002-11-11 13:23:02 +00:00
parent 34da28c8ab
commit 08f819d0df
3 changed files with 4 additions and 16 deletions

View File

@@ -26,20 +26,6 @@ Options::operator[] (Option_Type option)
return _option_word & option;
}
/* Enables option OPT. */
INLINE void
Options::operator = (enum Option_Type opt)
{
_option_word |= opt;
}
/* Disables option OPT. */
INLINE void
Options::operator != (enum Option_Type opt)
{
_option_word &= ~opt;
}
/* Initializes the key Iterator. */
INLINE void
Options::reset ()