clang-format and clang-tidy fixes for a3d73339

This commit is contained in:
github-actions[bot] 2023-05-24 09:07:17 +00:00
parent a3d7333993
commit 157401e411

View File

@ -72,7 +72,7 @@ char get_char(const std::string &input, std::size_t pos) {
return '\x00'; return '\x00';
} }
return static_cast<char>( return static_cast<char>(
extract_byte(input_size*8, padded_input_size - pos-1)); extract_byte(input_size * 8, padded_input_size - pos - 1));
} }
/** /**