diff options
| author | Fuwn <[email protected]> | 2022-02-03 13:20:03 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-02-03 13:20:03 +0000 |
| commit | bf7ecbbc3970edd32a2ca52093fe4d5846cd8791 (patch) | |
| tree | 692670d5396558926767089e5b64a601af2f429c /include | |
| parent | doc: some documentation :smile: (diff) | |
| download | soyuz-bf7ecbbc3970edd32a2ca52093fe4d5846cd8791.tar.xz soyuz-bf7ecbbc3970edd32a2ca52093fe4d5846cd8791.zip | |
fmt(include): un-pre-name subroutine parameters
Diffstat (limited to 'include')
| -rw-r--r-- | include/soyuz/library.hh | 8 | ||||
| -rw-r--r-- | include/soyuz/tray.hh | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/soyuz/library.hh b/include/soyuz/library.hh index 9346f2a..c63f976 100644 --- a/include/soyuz/library.hh +++ b/include/soyuz/library.hh @@ -25,13 +25,13 @@ namespace soyuz { // high, // red // }; -static BOOL CALLBACK enum_windows_proc(HWND hwnd, LPARAM lparam); +static BOOL CALLBACK enum_windows_proc(HWND, LPARAM); auto find_lunar() -> DWORD; -auto delete_handle(DWORD pid) -> int; -auto write_log_file(const std::string &message) -> void; +auto delete_handle(DWORD) -> int; +auto write_log_file(const std::string &) -> void; auto init_log_file() -> void; auto close_log_file() -> void; -auto exit(int exit_code) -> void; +auto exit(int) -> void; // https://stackoverflow.com/a/10467633/14452787 auto current_date_time() -> std::string; diff --git a/include/soyuz/tray.hh b/include/soyuz/tray.hh index 6722bab..996a816 100644 --- a/include/soyuz/tray.hh +++ b/include/soyuz/tray.hh @@ -24,7 +24,7 @@ auto InitNotifyIconData() -> void; namespace soyuz { -auto log(const std::string &message) -> void; +auto log(const std::string &) -> void; } |