diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-04-12 11:14:08 +0200 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2023-04-12 21:52:36 +0200 |
commit | 5f78556078d2e61d5c0ef44e36d58f3864cd84d1 (patch) | |
tree | eb8e9e52d156b00e8699e46c01de42c606b935d7 /src/amount.cc | |
parent | 15f29d4852e01bc6c6fb802ee818d991142e2f36 (diff) | |
download | fork-ledger-5f78556078d2e61d5c0ef44e36d58f3864cd84d1.tar.gz fork-ledger-5f78556078d2e61d5c0ef44e36d58f3864cd84d1.tar.bz2 fork-ledger-5f78556078d2e61d5c0ef44e36d58f3864cd84d1.zip |
Refactor basic_flags_t to ledger::flags::basic_t
Diffstat (limited to 'src/amount.cc')
-rw-r--r-- | src/amount.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amount.cc b/src/amount.cc index eb5e0196..484c3099 100644 --- a/src/amount.cc +++ b/src/amount.cc @@ -52,7 +52,7 @@ static mpfr_t tempfnum; static mpfr_t tempfden; #endif -struct amount_t::bigint_t : public supports_flags<> +struct amount_t::bigint_t : public flags::supports_flags<> { #define BIGINT_BULK_ALLOC 0x01 #define BIGINT_KEEP_PREC 0x02 |