Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/util/std_expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Author: Daniel Kroening, kroening@kroening.com
/// \file util/std_expr.h
/// API to expression classes

#include "deprecate.h"
#include "expr_cast.h"
#include "invariant.h"
#include "std_types.h"
Expand Down Expand Up @@ -3608,7 +3609,10 @@ inline cond_exprt &to_cond_expr(exprt &expr)
/// matching case. The first operand is the value to compare against. Subsequent
/// operands alternate between compare values and result values. The syntax is:
/// case(select_value, case1_value, result1, case2_value, result2, ...)
class case_exprt : public multi_ary_exprt
/// \deprecated This expression is SMV-specific and has no other use.
// NOLINTNEXTLINE(readability/identifiers)
class DEPRECATED(SINCE(2026, 1, 18, "SMV-specific, has no other use"))
case_exprt : public multi_ary_exprt
{
public:
case_exprt(operandst _operands, typet _type)
Expand Down
Loading