Raise max accounts to 100 in x64 build
This commit is contained in:
parent
d27455b201
commit
f0e117d3fa
1 changed files with 4 additions and 0 deletions
|
|
@ -31,7 +31,11 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
static constexpr auto kMaxAccountsWarn = 3;
|
static constexpr auto kMaxAccountsWarn = 3;
|
||||||
|
#ifdef Q_PROCESSOR_X86_64
|
||||||
|
static constexpr auto kMaxAccounts = 100;
|
||||||
|
#else
|
||||||
static constexpr auto kMaxAccounts = 10;
|
static constexpr auto kMaxAccounts = 10;
|
||||||
|
#endif
|
||||||
|
|
||||||
explicit Domain(const QString &dataName);
|
explicit Domain(const QString &dataName);
|
||||||
~Domain();
|
~Domain();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue