mirror of
https://github.com/boostorg/concept_check.git
synced 2026-01-26 00:42:17 +01:00
Fixed the implementation for GCC 3.3.x and comeau Added BOOST_CONCEPT_WHERE, and tests [SVN r33887]
14 lines
327 B
C++
Executable File
14 lines
327 B
C++
Executable File
// Copyright David Abrahams 2006. 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 <vector>
|
|
#undef NDEBUG
|
|
#include "fake_sort.hpp"
|
|
|
|
int main()
|
|
{
|
|
std::vector<int> v;
|
|
fake_sort(v.begin(), v.end());
|
|
return 0;
|
|
}
|