1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +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

@@ -83,8 +83,6 @@ public:
~Options ();
int operator[] (Option_Type option);
void operator() (int argc, char *argv[]);
void operator= (enum Option_Type);
void operator!= (enum Option_Type);
static void print_options ();
static void set_asso_max (int r);
static int get_asso_max ();

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 ()