Killed off "Concept" suffixes on Boost concepts. Maintained

back-compatibility by using a macro to define XxxxConcept when
defining Xxxxx.


[SVN r33894]
This commit is contained in:
Dave Abrahams
2006-05-01 19:40:32 +00:00
parent f00741c14f
commit 79017f985a
14 changed files with 407 additions and 413 deletions

View File

@@ -21,6 +21,6 @@ struct foo { };
int
main()
{
boost::function_requires< boost::EqualityComparableConcept<foo> >();
boost::function_requires< boost::EqualityComparable<foo> >();
return 0;
}