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/account.h | |
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/account.h')
-rw-r--r-- | src/account.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account.h b/src/account.h index 871a3516..be8fddaf 100644 --- a/src/account.h +++ b/src/account.h @@ -53,7 +53,7 @@ typedef std::list<post_t *> posts_list; typedef std::map<string, account_t *> accounts_map; typedef std::map<string, posts_list> deferred_posts_map_t; -class account_t : public supports_flags<>, public scope_t +class account_t : public flags::supports_flags<>, public scope_t { #define ACCOUNT_NORMAL 0x00 // no flags at all, a basic account #define ACCOUNT_KNOWN 0x01 |