Full merge from trunk at revision 41356 of entire boost-root tree.

[SVN r41370]
This commit is contained in:
Beman Dawes
2007-11-25 18:38:02 +00:00
parent 92ae569516
commit 997b34b581
25 changed files with 1581 additions and 1202 deletions
+7 -6
View File
@@ -1,4 +1,4 @@
// (C) Copyright Jeremy Siek 2000.
// (C) Copyright Jeremy Siek, David Abrahams 2000-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)
@@ -11,21 +11,22 @@
/*
This file verifies that class_requires of the Boost Concept Checking
Library catches errors when it is suppose to.
Library catches errors when it is supposed to.
*/
struct foo { };
template <class T>
class class_requires_test
{
BOOST_CLASS_REQUIRE(foo, boost, EqualityComparableConcept);
BOOST_CONCEPT_ASSERT((boost::EqualityComparable<foo>));
};
int
main()
{
class_requires_test x;
(void)x; // suppress unused variable warning
return 0;
class_requires_test<int> x;
(void)x; // suppress unused variable warning
return 0;
}