/*******************************************************************\ Module: C++ Language Type Checking Author: Daniel Kroening, kroening@cs.cmu.edu \*******************************************************************/ /// \file /// C++ Language Type Checking #ifndef CPROVER_CPP_CPP_STATIC_ASSERT_H #define CPROVER_CPP_CPP_STATIC_ASSERT_H #include class cpp_static_assertt : public binary_exprt { public: cpp_static_assertt(exprt _cond, exprt _description) : binary_exprt( std::move(_cond), ID_cpp_static_assert, std::move(_description), typet()) { } exprt &cond() { return op0(); } const exprt &cond() const { return op0(); } const exprt &description() const { return op1(); } exprt &description() { return op1(); } }; #endif // CPROVER_CPP_CPP_STATIC_ASSERT_H