Skip to content

Commit 76627fb

Browse files
committed
parser-inc: Add std::sort to algorithm header
1 parent 588e2c8 commit 76627fb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

parser-inc/algorithm

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ namespace std {
2525
constexpr const T &min(const T &a, const T &b);
2626
template<class T>
2727
constexpr const T &max(const T &a, const T &b);
28+
29+
template<class RandomIt>
30+
void sort(RandomIt first, RandomIt last);
31+
template<class RandomIt, class Compare>
32+
void sort(RandomIt first, RandomIt last, Compare comp);
2833
}
2934

3035
#endif
31-

0 commit comments

Comments
 (0)