Boost logo

Boost :

From: David Abrahams (abrahams_at_[hidden])
Date: 2001-02-19 20:29:31


In looking over the concept_check documentation, I'm struck by this
assymmetry:

  // shouldn't this be "boost::function_requires"?
  function_requires<EqualityComparableConcept<T> >();
vs
  BOOST_CLASS_REQUIRES(T, EqualityComparableConcept);

wouldn't it be more memnonic if one wrote:

  boost::function_requires<EqualityComparableConcept<T> >();
  BOOST_CLASS_REQUIRES(EqualityComparableConcept, T);

??

-Dave


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk