From a40093dcc3401f02c3fc9d6aefb9b08da797f3ea Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Thu, 17 Sep 2020 01:06:29 +0000 Subject: [PATCH] Remove always-true assert in ClpMap (#726) Always-true assert()s are a build error for the latest GCC. --- src/base/ClpMap.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/base/ClpMap.h b/src/base/ClpMap.h index 75e47a1ab7..60767455a3 100644 --- a/src/base/ClpMap.h +++ b/src/base/ClpMap.h @@ -144,7 +144,6 @@ template void ClpMap::setMemLimit(const uint64_t newLimit) { - assert(newLimit >= 0); if (memUsed_ > newLimit) trim(memLimit_ - newLimit); memLimit_ = newLimit; -- 2.47.2