Remove unused vars identified by lint

This commit is contained in:
Kurtis Rader
2017-08-18 16:52:39 -07:00
parent f872f25f5b
commit 55b2d36028
6 changed files with 81 additions and 100 deletions

View File

@@ -158,7 +158,7 @@ void reader_pop();
/// - The command to be completed as a null terminated array of wchar_t
/// - An array_list_t in which completions will be inserted.
typedef void (*complete_function_t)(const wcstring &, std::vector<completion_t> *,
completion_request_flags_t, const env_vars_snapshot_t &);
completion_request_flags_t);
void reader_set_complete_function(complete_function_t);
/// The type of a highlight function.