diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-04-13 00:57:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 00:57:10 +0200 |
commit | d8fefe9e82f99d4dab477a66c83cad64a8159c33 (patch) | |
tree | 27d1a5e41abca837b72cfcc81b0b5c365f7debe7 /src/account.h | |
parent | 0c57796f86aeec45e106189aacfd50e1791d5605 (diff) | |
parent | 9244a27f9548a1d39fb01348fde66ff81f5150a4 (diff) | |
download | fork-ledger-d8fefe9e82f99d4dab477a66c83cad64a8159c33.tar.gz fork-ledger-d8fefe9e82f99d4dab477a66c83cad64a8159c33.tar.bz2 fork-ledger-d8fefe9e82f99d4dab477a66c83cad64a8159c33.zip |
Merge pull request #2233 from afh/clean-up-class-list
Clean up class list
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 |