Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Nov 27, 2023
1 parent a850c34 commit 30bdbab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ int main(int argc, char* argv[]) {

std::size_t n;
in_file >> n;
unsigned int i;
for (std::size_t i = 0; i < n; ++i) {
double sx, sy, tx, ty;
in_file >> sx >> sy >> tx >> ty;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class Arr_curve_data_traits_2 : public Traits_ {
const Base_traits_2& m_base;

template <typename T>
bool are_mergeable_data(const T& cv1, const T& cv2, long) const {
bool are_mergeable_data(const T& /* cv1 */, const T& /* cv2 */, long) const {
CGAL_error_msg("Equality operator is not supported.");
return false;
}
Expand Down

0 comments on commit 30bdbab

Please sign in to comment.