Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 447928 | Differences between
and this patch

Collapse All | Expand All

(-)ppl-0.12.1_unpatched/src/mp_std_bits.cc (+8 lines)
Lines 45-51 Link Here
45
const bool std::numeric_limits<mpz_class>::is_bounded;
45
const bool std::numeric_limits<mpz_class>::is_bounded;
46
const bool std::numeric_limits<mpz_class>::is_modulo;
46
const bool std::numeric_limits<mpz_class>::is_modulo;
47
const bool std::numeric_limits<mpz_class>::traps;
47
const bool std::numeric_limits<mpz_class>::traps;
48
#if __GNU_MP_RELEASE < 50100
48
const bool std::numeric_limits<mpz_class>::tininess_before;
49
const bool std::numeric_limits<mpz_class>::tininess_before;
50
#else
51
const bool std::numeric_limits<mpz_class>::tinyness_before;
52
#endif
49
const std::float_round_style std::numeric_limits<mpz_class>::round_style;
53
const std::float_round_style std::numeric_limits<mpz_class>::round_style;
50
54
51
const bool std::numeric_limits<mpq_class>::is_specialized;
55
const bool std::numeric_limits<mpq_class>::is_specialized;
Lines 68-72 Link Here
68
const bool std::numeric_limits<mpq_class>::is_bounded;
72
const bool std::numeric_limits<mpq_class>::is_bounded;
69
const bool std::numeric_limits<mpq_class>::is_modulo;
73
const bool std::numeric_limits<mpq_class>::is_modulo;
70
const bool std::numeric_limits<mpq_class>::traps;
74
const bool std::numeric_limits<mpq_class>::traps;
75
#if __GNU_MP_RELEASE < 50100
71
const bool std::numeric_limits<mpq_class>::tininess_before;
76
const bool std::numeric_limits<mpq_class>::tininess_before;
77
#else
78
const bool std::numeric_limits<mpq_class>::tinyness_before;
79
#endif
72
const std::float_round_style std::numeric_limits<mpq_class>::round_style;
80
const std::float_round_style std::numeric_limits<mpq_class>::round_style;
(-)ppl-0.12.1_unpatched/src/mp_std_bits.defs.hh (+2 lines)
Lines 38-43 Link Here
38
#endif // defined(PPL_DOXYGEN_INCLUDE_IMPLEMENTATION_DETAILS)
38
#endif // defined(PPL_DOXYGEN_INCLUDE_IMPLEMENTATION_DETAILS)
39
void swap(mpq_class& x, mpq_class& y);
39
void swap(mpq_class& x, mpq_class& y);
40
40
41
#if __GNU_MP_RELEASE < 50100
41
namespace std {
42
namespace std {
42
43
43
#ifdef PPL_DOXYGEN_INCLUDE_IMPLEMENTATION_DETAILS
44
#ifdef PPL_DOXYGEN_INCLUDE_IMPLEMENTATION_DETAILS
Lines 164-169 Link Here
164
165
165
} // namespace std
166
} // namespace std
166
167
168
#endif // __GNU_MP_RELEASE < 50100
167
#include "mp_std_bits.inlines.hh"
169
#include "mp_std_bits.inlines.hh"
168
170
169
#endif // !defined(PPL_mp_std_bits_defs_hh)
171
#endif // !defined(PPL_mp_std_bits_defs_hh)

Return to bug 447928