From ccf9b0b4377a81c510c824f4e23cdd14cf872061 Mon Sep 17 00:00:00 2001 From: Sean McGovern Date: Mon, 21 Mar 2022 22:21:46 +0000 Subject: [PATCH] #1423: remove maximimum ref-count check --- src/vt/messaging/envelope/envelope_ref.impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vt/messaging/envelope/envelope_ref.impl.h b/src/vt/messaging/envelope/envelope_ref.impl.h index 526dc2b630..bd29f7a92c 100644 --- a/src/vt/messaging/envelope/envelope_ref.impl.h +++ b/src/vt/messaging/envelope/envelope_ref.impl.h @@ -60,7 +60,7 @@ inline void envelopeRef(Env& env) { "instead of a MsgPtr/makeMessage/makeSharedMessage construct." ); vtAssertInfo( - envp->ref >= 0 and envp->ref < 100, + envp->ref >= 0, "Bad ref-count on message ref-increment. " "Message ref-count must never be negative and cannnot exceed limit (100).", static_cast(envp->ref)