diff options
| author | Fuwn <[email protected]> | 2022-04-10 08:50:36 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-10 08:50:36 +0000 |
| commit | 75c9a467cb8fdc3007fc7842137fc5b17e741141 (patch) | |
| tree | ad8409d7e64744d5121a795f9d15eac60d27e11d | |
| parent | refactor: explicit auto (diff) | |
| download | maple-75c9a467cb8fdc3007fc7842137fc5b17e741141.tar.xz maple-75c9a467cb8fdc3007fc7842137fc5b17e741141.zip | |
refactor: more explicit auto
| -rwxr-xr-x[-rw-r--r--] | bin/genkey | 0 | ||||
| -rw-r--r-- | maple/maple.cc | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/bin/genkey b/bin/genkey index e081711..e081711 100644..100755 --- a/bin/genkey +++ b/bin/genkey diff --git a/maple/maple.cc b/maple/maple.cc index 0bae0e9..4480e09 100644 --- a/maple/maple.cc +++ b/maple/maple.cc @@ -61,7 +61,7 @@ auto main() -> int { file_extension.end(), gemini_file_extension.begin(), gemini_file_extension.end(), - [](auto a, auto b) -> bool { + [](char a, char b) -> bool { return std::tolower(a) == std::tolower(b); } )) { |