1 // Copyright David Abrahams 2006. Distributed under the Boost 2 // Software License, Version 1.0. (See accompanying 3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 4 #include <list> 5 #undef NDEBUG 6 #include "fake_sort.hpp" 7 main()8int main() 9 { 10 std::list<int> v; 11 fake::sort(v.begin(), v.end()); 12 return 0; 13 } 14