1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_INCONSISTENT_TURNS_EXCEPTION_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_INCONSISTENT_TURNS_EXCEPTION_HPP
- #if ! defined(BOOST_GEOMETRY_OVERLAY_NO_THROW)
- #include <boost/geometry/core/exception.hpp>
- namespace boost { namespace geometry
- {
- class inconsistent_turns_exception : public geometry::exception
- {
- public:
- inline inconsistent_turns_exception() {}
- char const* what() const noexcept override
- {
- return "Boost.Geometry Inconsistent Turns exception";
- }
- };
- }}
- #endif
- #endif
|