mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
[clang-tidy] use using instead of typedef
Found with modernize-use-using Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
dd704ae30c
commit
aae9ebfbd4
3 changed files with 3 additions and 3 deletions
|
@ -325,7 +325,7 @@ class completer_t {
|
||||||
|
|
||||||
/// Table of completions conditions that have already been tested and the corresponding test
|
/// Table of completions conditions that have already been tested and the corresponding test
|
||||||
/// results.
|
/// results.
|
||||||
typedef std::unordered_map<wcstring, bool> condition_cache_t;
|
using condition_cache_t = std::unordered_map<wcstring, bool>;
|
||||||
condition_cache_t condition_cache;
|
condition_cache_t condition_cache;
|
||||||
|
|
||||||
enum complete_type_t { COMPLETE_DEFAULT, COMPLETE_AUTOSUGGEST };
|
enum complete_type_t { COMPLETE_DEFAULT, COMPLETE_AUTOSUGGEST };
|
||||||
|
|
|
@ -169,7 +169,7 @@ static highlight_role_t get_fallback(highlight_role_t role) {
|
||||||
/// Returns:
|
/// Returns:
|
||||||
/// false: the filesystem is not case insensitive
|
/// false: the filesystem is not case insensitive
|
||||||
/// true: the file system is case insensitive
|
/// true: the file system is case insensitive
|
||||||
typedef std::unordered_map<wcstring, bool> case_sensitivity_cache_t;
|
using case_sensitivity_cache_t = std::unordered_map<wcstring, bool>;
|
||||||
bool fs_is_case_insensitive(const wcstring &path, int fd,
|
bool fs_is_case_insensitive(const wcstring &path, int fd,
|
||||||
case_sensitivity_cache_t &case_sensitivity_cache) {
|
case_sensitivity_cache_t &case_sensitivity_cache) {
|
||||||
bool result = false;
|
bool result = false;
|
||||||
|
|
|
@ -460,7 +460,7 @@ static wcstring truncate_command(const wcstring &cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Format information about job status for the user to look at.
|
/// Format information about job status for the user to look at.
|
||||||
typedef enum { JOB_STOPPED, JOB_ENDED } job_status_t;
|
using job_status_t = enum { JOB_STOPPED, JOB_ENDED };
|
||||||
static void print_job_status(const job_t *j, job_status_t status) {
|
static void print_job_status(const job_t *j, job_status_t status) {
|
||||||
const wchar_t *msg = L"Job %d, '%ls' has ended"; // this is the most common status msg
|
const wchar_t *msg = L"Job %d, '%ls' has ended"; // this is the most common status msg
|
||||||
if (status == JOB_STOPPED) msg = L"Job %d, '%ls' has stopped";
|
if (status == JOB_STOPPED) msg = L"Job %d, '%ls' has stopped";
|
||||||
|
|
Loading…
Reference in a new issue