From 5f17d7aa75999764de8d81a934a6c4d5e396ecb6 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 17 May 2022 17:49:14 +0200 Subject: [PATCH] fix: Narrowing conversion error in Encoding File parsing --- lib/libimhex/include/hex/helpers/encoding_file.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libimhex/include/hex/helpers/encoding_file.hpp b/lib/libimhex/include/hex/helpers/encoding_file.hpp index b04eaaa66..ce16e5fa8 100644 --- a/lib/libimhex/include/hex/helpers/encoding_file.hpp +++ b/lib/libimhex/include/hex/helpers/encoding_file.hpp @@ -30,8 +30,8 @@ namespace hex { bool m_valid = false; - std::map, std::string>> m_mapping; + std::map, std::string>> m_mapping; size_t m_longestSequence = 0; }; -} \ No newline at end of file +}