diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-04-08 03:09:47 +0000 |
---|---|---|
committer | <> | 2015-05-05 14:37:32 +0000 |
commit | f2541bb90af059680aa7036f315f052175999355 (patch) | |
tree | a5b214744b256f07e1dc2bd7273035a7808c659f /boost/integer_fwd.hpp | |
parent | ed232fdd34968697a68783b3195b1da4226915b5 (diff) | |
download | boost-tarball-master.tar.gz |
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_58_0.tar.bz2.HEADboost_1_58_0master
Diffstat (limited to 'boost/integer_fwd.hpp')
-rw-r--r-- | boost/integer_fwd.hpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/boost/integer_fwd.hpp b/boost/integer_fwd.hpp index 20eff2bcf..10577ae29 100644 --- a/boost/integer_fwd.hpp +++ b/boost/integer_fwd.hpp @@ -158,6 +158,29 @@ template <static_min_max_unsigned_type Value1, static_min_max_unsigned_type Valu template <static_min_max_unsigned_type Value1, static_min_max_unsigned_type Value2> struct static_unsigned_max; + +// From <boost/integer/common_factor_ct.hpp> + +#ifdef BOOST_NO_INTEGRAL_INT64_T + typedef unsigned long static_gcd_type; +#else + typedef boost::uintmax_t static_gcd_type; +#endif + +template < static_gcd_type Value1, static_gcd_type Value2 > + struct static_gcd; +template < static_gcd_type Value1, static_gcd_type Value2 > + struct static_lcm; + + +// From <boost/integer/common_factor_rt.hpp> + +template < typename IntegerType > + class gcd_evaluator; +template < typename IntegerType > + class lcm_evaluator; + + } // namespace boost |