diff options
| author | 2022-10-30 12:16:52 +0000 | |
|---|---|---|
| committer | 2022-10-30 12:58:38 +0000 | |
| commit | 41926908ecfcf043cd149e93f0c710f8cecd96a0 (patch) | |
| tree | 1a0c82117e31ad9fca8b43514e571344793353c9 /include/hashcomp.h | |
| parent | Slim down the forward declarations in typedefs. (diff) | |
Fix some types which were missed when making stuff final.
Diffstat (limited to 'include/hashcomp.h')
| -rw-r--r-- | include/hashcomp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 1b31f76a8..b17be3648 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -81,7 +81,7 @@ namespace irc * Case sensitivity is ignored, and the RFC 'character set' * is adhered to */ - struct StrHashComp + struct StrHashComp final { /** The operator () does the actual comparison in hash_map */ @@ -91,7 +91,7 @@ namespace irc } }; - struct insensitive + struct insensitive final { size_t CoreExport operator()(const std::string& s) const; }; |
