bad_error_eg.cpp 350 B

1234567891011121314
  1. #include <vector>
  2. #include <complex>
  3. #include "algorithm"
  4. int main()
  5. {
  6. std::vector<std::complex<float> > v;
  7. std_::stable_sort(v.begin(), v.end());
  8. }
  9. // (C) Copyright Jeremy Siek 2000.
  10. // Distributed under the Boost Software License, Version 1.0. (See
  11. // accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)