mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
changed default and added to comment
This commit is contained in:
parent
dabcf1d311
commit
d8a840d052
1 changed files with 14 additions and 3 deletions
|
|
@ -13,6 +13,17 @@ constexpr const char *config_location = "../config.json";
|
||||||
constexpr bool return_on_del = false;
|
constexpr bool return_on_del = false;
|
||||||
constexpr const char *return_account = "";
|
constexpr const char *return_account = "";
|
||||||
|
|
||||||
//if true, when frequency is hit after changes have happened then save
|
/*
|
||||||
//if false, when frequency is hit save
|
if true, when frequency is hit after changes have happened then save
|
||||||
#define CONSERVATIVE_DISK_SAVE true
|
pros
|
||||||
|
LOW disk usage
|
||||||
|
cons
|
||||||
|
overhead to all mutating functions
|
||||||
|
if false, when frequency is hit save
|
||||||
|
pros
|
||||||
|
safer
|
||||||
|
no atomic overhead
|
||||||
|
cons
|
||||||
|
CONSTANT disk usage
|
||||||
|
*/
|
||||||
|
#define CONSERVATIVE_DISK_SAVE false
|
||||||
Loading…
Reference in a new issue