mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
Refactor: omit parens in lambdas with no parameters
TIL []{} is a thing. We already do that in some places, so this improves consistency, although it may be less obvious.
This commit is contained in:
parent
c325603d73
commit
8ef8fb3d94
3 changed files with 6 additions and 6 deletions
|
@ -151,7 +151,7 @@ bool is_windows_subsystem_for_linux() {
|
|||
// routine simultaneously the first time around, we just end up needlessly querying uname(2) one
|
||||
// more time.
|
||||
|
||||
static bool wsl_state = []() {
|
||||
static bool wsl_state = [] {
|
||||
utsname info;
|
||||
uname(&info);
|
||||
|
||||
|
@ -2130,7 +2130,7 @@ std::string get_path_to_tmp_dir() {
|
|||
// session. We err on the side of assuming it's not a console session. This approach isn't
|
||||
// bullet-proof and that's OK.
|
||||
bool is_console_session() {
|
||||
static const bool console_session = []() {
|
||||
static const bool console_session = [] {
|
||||
ASSERT_IS_MAIN_THREAD();
|
||||
|
||||
const char *tty_name = ttyname(0);
|
||||
|
|
|
@ -45,7 +45,7 @@ bool parser_keywords_skip_arguments(const wcstring &cmd) {
|
|||
}
|
||||
|
||||
bool parser_keywords_is_subcommand(const wcstring &cmd) {
|
||||
const static string_set_t search_list = ([]() {
|
||||
const static string_set_t search_list = ([] {
|
||||
string_set_t results;
|
||||
results.insert(std::begin(subcommand_keywords), std::end(subcommand_keywords));
|
||||
results.insert(std::begin(skip_keywords), std::end(skip_keywords));
|
||||
|
@ -68,7 +68,7 @@ bool parser_keywords_is_block(const wcstring &word) {
|
|||
}
|
||||
|
||||
bool parser_keywords_is_reserved(const wcstring &word) {
|
||||
const static string_set_t search_list = ([]() {
|
||||
const static string_set_t search_list = ([] {
|
||||
string_set_t results;
|
||||
results.insert(std::begin(subcommand_keywords), std::end(subcommand_keywords));
|
||||
results.insert(std::begin(skip_keywords), std::end(skip_keywords));
|
||||
|
|
|
@ -212,7 +212,7 @@ static void pop_timer() {
|
|||
}
|
||||
|
||||
cleanup_t push_timer(bool enabled) {
|
||||
if (!enabled) return {[]() {}};
|
||||
if (!enabled) return {[] {}};
|
||||
active_timers.emplace_back(timer_snapshot_t::take());
|
||||
return {[]() { pop_timer(); }};
|
||||
return {[] { pop_timer(); }};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue