assert.hpp 383 B

12345678910111213
  1. // Copyright 2008-2022 Emil Dotchevski and Reverge Studios, Inc.
  2. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef BOOST_QVM_ASSERT
  5. # ifdef BOOST_ASSERT
  6. # define BOOST_QVM_ASSERT BOOST_ASSERT
  7. # else
  8. # include <cassert>
  9. # define BOOST_QVM_ASSERT assert
  10. # endif
  11. #endif