dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/Straight_skeleton_2/assertions.h

48 lines
1.6 KiB
C
Raw Normal View History

// Copyright (c) 2007 Fernando Luis Cacciola Carballal. All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
2020-10-13 12:44:25 +00:00
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Straight_skeleton_2/include/CGAL/Straight_skeleton_2/assertions.h $
// $Id: assertions.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Fernando Cacciola <fernando_cacciola@ciudad.com.ar>
#ifndef CGAL_STRAIGHT_SKELETON_ASSERTIONS_H
#define CGAL_STRAIGHT_SKELETON_ASSERTIONS_H
#include <CGAL/license/Straight_skeleton_2.h>
#if defined(CGAL_STRAIGHT_SKELETON_NO_POSTCONDITIONS) \
|| defined(CGAL_NO_POSTCONDITIONS) \
|| (!defined(CGAL_STRAIGHT_SKELETON_CHECK_EXPENSIVE) && !defined(CGAL_CHECK_EXPENSIVE)) \
|| defined(NDEBUG)
# define CGAL_stskel_expensive_postcondition(EX) (static_cast<void>(0))
# define CGAL_stskel_expensive_postcondition_msg(EX,MSG) (static_cast<void>(0))
# define CGAL_stskel_expensive_postcondition_code(CODE)
#else
# define CGAL_stskel_expensive_postcondition(EX) (CGAL::possibly(EX)?(static_cast<void>(0)): ::CGAL::postcondition_fail( # EX , __FILE__, __LINE__))
# define CGAL_stskel_expensive_postcondition_msg(EX,MSG) (CGAL::possibly(EX)?(static_cast<void>(0)): ::CGAL::postcondition_fail( # EX , __FILE__, __LINE__, MSG))
# define CGAL_stskel_expensive_postcondition_code(CODE) CODE
2020-10-13 12:44:25 +00:00
#endif
namespace CGAL {
namespace {
template<class Handle> inline bool handle_assigned ( Handle const& aH )
{
Handle null ;
return aH != null ;
}
}
} // end namespace CGAL
#endif // CGAL_STRAIGHT_SKELETON_ASSERTIONS_H //
// EOF //
2020-10-13 12:44:25 +00:00