From 9e6187ad47371795d9d09e0087c1f4de1535d679 Mon Sep 17 00:00:00 2001 From: Sean McGovern Date: Tue, 20 Sep 2022 23:29:17 +0000 Subject: [PATCH] #1941: make types commensurable --- src/vt/termination/termination.impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vt/termination/termination.impl.h b/src/vt/termination/termination.impl.h index 279bd0350b..45409699e6 100644 --- a/src/vt/termination/termination.impl.h +++ b/src/vt/termination/termination.impl.h @@ -169,7 +169,7 @@ inline EpochType TerminationDetector::popEpoch(EpochType const& epoch) { auto const& non_zero = epoch_stack_.size() > 0; vtAssertExprInfo( non_zero and (epoch_stack_.top() == epoch.get() or epoch == no_epoch), - epoch, non_zero, non_zero ? epoch_stack_.top() : no_epoch + epoch, non_zero, non_zero ? EpochType{epoch_stack_.top()} : no_epoch ); if (epoch == no_epoch) { return non_zero ? epoch_stack_.pop(),EpochType{epoch_stack_.top()} : no_epoch;