1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-21 13:46:52 +00:00

fix: right const (#6588)

This commit is contained in:
Cœur 2024-02-09 06:54:59 +01:00 committed by GitHub
parent 340d0d4966
commit 9bc8ed8e46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,7 @@ protected:
tr_preferred_transport*,
tr_tos_t*,
tr_verify_added_mode*>;
using field_value_type = std::pair<const field_key_type, field_mapped_type>;
using field_value_type = std::pair<field_key_type const, field_mapped_type>;
using Fields = std::vector<field_value_type>;
Settings() = default;