Skip to content

Commit

Permalink
parser-inc: Add std::sort to algorithm header
Browse files Browse the repository at this point in the history
  • Loading branch information
rdb committed Oct 30, 2024
1 parent 588e2c8 commit 76627fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion parser-inc/algorithm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ namespace std {
constexpr const T &min(const T &a, const T &b);
template<class T>
constexpr const T &max(const T &a, const T &b);

template<class RandomIt>
void sort(RandomIt first, RandomIt last);
template<class RandomIt, class Compare>
void sort(RandomIt first, RandomIt last, Compare comp);
}

#endif

0 comments on commit 76627fb

Please sign in to comment.