mirror of
https://github.com/boostorg/concept_check.git
synced 2026-05-05 12:24:16 +02:00
Full merge from trunk at revision 41356 of entire boost-root tree.
[SVN r41370]
This commit is contained in:
+10
-9
@@ -1,13 +1,14 @@
|
||||
#include <vector>
|
||||
#include <complex>
|
||||
#include "algorithm"
|
||||
|
||||
int main()
|
||||
{
|
||||
std::vector<std::complex<float> > v;
|
||||
std_::stable_sort(v.begin(), v.end());
|
||||
}
|
||||
|
||||
// (C) Copyright Jeremy Siek 2000.
|
||||
// Distributed under the Boost Software License, Version 1.0. (See
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#include <list>
|
||||
#include <algorithm>
|
||||
|
||||
int main() {
|
||||
std::list<int> v;
|
||||
std::stable_sort(v.begin(), v.end());
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user