Пример #1
0
 void load_integral(T & val, boost::mpl::true_)
 {
     boost::uint64_t ul;
     load_integral_impl(ul);
     val = static_cast<T>(ul);
 }
Пример #2
0
 void load_integral(boost::uint128_type& t, boost::mpl::true_)
 {
     load_integral_impl(t);
 }
Пример #3
0
 void load_integral(T & val, boost::mpl::false_)
 {
     boost::int64_t l;
     load_integral_impl(l);
     val = static_cast<T>(l);
 }
Пример #4
0
 void load_integral(boost::int128_type& t, boost::mpl::false_)
 {
     load_integral_impl(t);
 }