diff options
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/value.h b/src/value.h index dbb83283..393ca3d3 100644 --- a/src/value.h +++ b/src/value.h @@ -78,14 +78,9 @@ class value_t multiplicative<value_t, balance_pair_t, multiplicative<value_t, balance_t, ordered_field_operators<value_t, amount_t, -#ifdef HAVE_GDTOA ordered_field_operators<value_t, double, -#endif ordered_field_operators<value_t, unsigned long, - ordered_field_operators<value_t, long> > > > > > > > > > -#ifdef HAVE_GDTOA - > -#endif + ordered_field_operators<value_t, long> > > > > > > > > > > { public: /** @@ -288,12 +283,10 @@ public: TRACE_CTOR(value_t, "const unsigned long"); set_amount(val); } -#ifdef HAVE_GDTOA value_t(const double val) { TRACE_CTOR(value_t, "const double"); set_amount(val); } -#endif value_t(const amount_t& val) { TRACE_CTOR(value_t, "const amount_t&"); set_amount(val); |