Skip to content

Commit

Permalink
Add missing header
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Nov 13, 2023
1 parent d06363e commit bd24168
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion polygon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <set>
#include <vector>
#include <cmath>
#include <climits>
#include <limits>
#include "geometry.hpp"
#include "errors.hpp"
Expand Down Expand Up @@ -625,7 +626,7 @@ std::vector<ring_area> reassemble(std::vector<segment> const &segs) {
} else {
fprintf(stderr, "0-area ring: ");
for (auto const &g : out) {
fprintf(stderr, "%lld,%lld ", g.x, g.y);
fprintf(stderr, "%lld,%lld ", (long long) g.x, (long long) g.y);
}
fprintf(stderr, "\n");
}
Expand Down

0 comments on commit bd24168

Please sign in to comment.