From 759b677627770c75dbd000ca81c6441b2452c1a5 Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Tue, 1 Jul 2014 11:36:46 +0200 Subject: [PATCH] [mc] Remove useless question in assert --- src/mc/mc_compare.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mc/mc_compare.cpp b/src/mc/mc_compare.cpp index 0067028319..8d0f597204 100644 --- a/src/mc/mc_compare.cpp +++ b/src/mc/mc_compare.cpp @@ -247,8 +247,7 @@ static int compare_global_variables(int region_type, mc_mem_region_t r1, mc_mem_region_t r2, mc_snapshot_t snapshot1, mc_snapshot_t snapshot2) { - xbt_assert(r1 && r2, - "Missing region. Did you enable SMPI privatisation? It is not compatible with state comparison."); + xbt_assert(r1 && r2, "Missing region."); struct mc_compare_state state; xbt_dynar_t variables; -- 2.20.1