Skip to content

Commit

Permalink
chore(elina): remove compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
caballa committed Mar 11, 2023
1 parent c012f84 commit 711fb08
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions include/crab/domains/elina_domains.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ class elina_domain final
case ELINA_PK:
s_apman = opt_pk_manager_alloc(false);
break;
default:
CRAB_ERROR("unknown elina domain");
}
}
return s_apman;
Expand Down Expand Up @@ -1203,7 +1201,6 @@ class elina_domain final
std::move(m));
case ELINA_ZONES:
case ELINA_PK:
default:
// CRAB_WARN("used meet instead of narrowing: \n",
// "make sure only a finite number of descending iterations
// are run.");
Expand Down Expand Up @@ -1608,8 +1605,6 @@ class elina_domain final
case OP_ASHR:
xi = yi.AShr(zi);
break;
default:
CRAB_ERROR("elina operation not supported");
}
set(x, xi);
}
Expand Down Expand Up @@ -1646,8 +1641,6 @@ class elina_domain final
case OP_ASHR:
xi = yi.AShr(zi);
break;
default:
CRAB_ERROR("elina operation not supported");
}
set(x, xi);
}
Expand Down Expand Up @@ -1995,8 +1988,6 @@ class elina_domain final
return "ElinaOctagon";
case ELINA_PK:
return "ElinaPolyhedra";
default:
CRAB_ERROR("Unknown elina domain");
}
}
};
Expand Down

0 comments on commit 711fb08

Please sign in to comment.