clang-format C++ files

Forgot to run this after the wcstring_list_t -> std::vector<wcstring> rename.
This commit is contained in:
Johannes Altmanninger
2023-04-19 22:39:38 +02:00
parent 564039093b
commit e4f6169a01
18 changed files with 37 additions and 24 deletions

View File

@@ -825,7 +825,8 @@ bool input_mapping_set_t::erase(const wcstring &sequence, const wcstring &mode,
}
bool input_mapping_set_t::get(const wcstring &sequence, const wcstring &mode,
std::vector<wcstring> *out_cmds, bool user, wcstring *out_sets_mode) const {
std::vector<wcstring> *out_cmds, bool user,
wcstring *out_sets_mode) const {
bool result = false;
const auto &ml = user ? mapping_list_ : preset_mapping_list_;
for (const input_mapping_t &m : ml) {