mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
"<" to "<="
This commit is contained in:
parent
5095ad0adb
commit
48c4d73cbc
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
|
@ -22,7 +22,7 @@ void SaveSig(int s)
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
static_assert(pre_log_size < max_log_size, "`max_log_size` must be larger than `pre_log_size`.");
|
static_assert(pre_log_size <= max_log_size, "`max_log_size` must be larger than `pre_log_size`.");
|
||||||
static_assert(!(max_log_size % pre_log_size), "`max_log_size` must be a multiple of `pre_log_size`.");
|
static_assert(!(max_log_size % pre_log_size), "`max_log_size` must be a multiple of `pre_log_size`.");
|
||||||
|
|
||||||
if (argc != 4)
|
if (argc != 4)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue