poly2tri: include stdexcept in each file throwing an std::exception.

This commit is contained in:
Tomasz Włostowski 2017-12-14 02:29:33 +01:00
parent a83ece88fd
commit b47a06e42a
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
*/ */
#include "shapes.h" #include "shapes.h"
#include <iostream> #include <iostream>
#include <exception> #include <stdexcept>
namespace p2t { namespace p2t {

View File

@ -28,11 +28,11 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <stdexcept>
#include "sweep.h" #include "sweep.h"
#include "sweep_context.h" #include "sweep_context.h"
#include "advancing_front.h" #include "advancing_front.h"
#include "../common/utils.h" #include "../common/utils.h"
#include <stdexcept>
namespace p2t { namespace p2t {