~barry/ubuntu/precise/boost1.46/debian-merge

« back to all changes in this revision

Viewing changes to boost/icl/type_traits/has_inverse.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2011-03-13 00:37:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110313003735-r7j6jdk0hkywfzuw
Tags: 1.46.1-1
* New upstream.

* control: Add libboost-random1.46-dev to depends of -all-dev and
  suggests of -dev.  Closes: #615849.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    { 
19
19
        typedef has_inverse<Type> type;
20
20
        BOOST_STATIC_CONSTANT(bool, 
21
 
            value = (type_traits::ice_or<is_signed<Type>::value, 
 
21
            value = (type_traits::ice_or<boost::is_signed<Type>::value, 
22
22
                                         is_floating_point<Type>::value>::value)); 
23
23
    };
24
24