Chris@16: // Boost.Geometry Index Chris@16: // Chris@101: // Copyright (c) 2011-2014 Adam Wulkiewicz, Lodz, Poland. Chris@16: // Chris@16: // Use, modification and distribution is subject to the Boost Software License, Chris@16: // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: #ifndef BOOST_GEOMETRY_INDEX_DETAIL_ASSERT_HPP Chris@16: #define BOOST_GEOMETRY_INDEX_DETAIL_ASSERT_HPP Chris@16: Chris@16: #include Chris@16: Chris@101: #ifndef BOOST_GEOMETRY_INDEX_ASSERT Chris@101: Chris@16: #define BOOST_GEOMETRY_INDEX_ASSERT(CONDITION, TEXT_MSG) \ Chris@16: BOOST_ASSERT_MSG(CONDITION, TEXT_MSG) Chris@16: Chris@101: #endif // BOOST_GEOMETRY_INDEX_ASSERT Chris@16: Chris@16: #endif // BOOST_GEOMETRY_INDEX_DETAIL_ASSERT_HPP