clang-format and clang-tidy fixes for b7b32ac7

This commit is contained in:
github-actions
2021-09-06 18:48:27 +00:00
parent b7b32ac7a9
commit 737fa0e931

View File

@@ -52,7 +52,8 @@ namespace selection_sort_recursive {
* @returns index of the minimum element
*/
template <typename T>
uint64_t findMinIndex(const std::vector<T> &in_arr, uint64_t current_position = 0) {
uint64_t findMinIndex(const std::vector<T> &in_arr,
uint64_t current_position = 0) {
if (current_position + 1 == in_arr.size()) {
return current_position;
}