Skip to content

Commit

Permalink
refactor: remove extra qualifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Me-Phew committed Nov 13, 2024
1 parent 8dc1e44 commit b6a38f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/merge_sorter/merge_sorter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class MergeSorter {
MergeSorter(const MergeSorter&) = delete;
MergeSorter& operator=(const MergeSorter&) = delete;

static std::vector<int> MergeSorter::merge(std::vector<int> arr, int left, int mid, int right);
static std::vector<int> MergeSorter::mergeSort(std::vector<int>& arr, int left, int right);
static std::vector<int> merge(std::vector<int> arr, int left, int mid, int right);
static std::vector<int> mergeSort(std::vector<int>& arr, int left, int right);

public:
static std::vector<int> sortArray(std::vector<int>& arr);
Expand Down

0 comments on commit b6a38f9

Please sign in to comment.