-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Further upstream fixes #1797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Further upstream fixes #1797
Changes from all commits
0a24b26
f8f016b
4edded6
b244fbd
322a135
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -68,7 +68,7 @@ struct Get_left_side_category< Traits_, false > { | |
|
|
||
| template < class Traits_ > | ||
| struct Arr_complete_left_side_category { | ||
| public: | ||
| npublic: | ||
| typedef Traits_ Traits; | ||
|
|
||
| typedef typename | ||
|
|
@@ -90,7 +90,7 @@ struct Validate_left_side_category< GeometryTraits_2, false > { | |
| void missing__Left_side_category() | ||
| { | ||
| T | ||
| missing__Left_side_category__assuming__Arr_oblivious_side_tag__instead; | ||
| missing__Left_side_category__assuming__Arr_oblivious_side_tag__instead __attribute__((unused)); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In |
||
| } | ||
| }; | ||
|
|
||
|
|
@@ -137,7 +137,7 @@ struct Validate_bottom_side_category< GeometryTraits_2, false > { | |
| void missing__Bottom_side_category() | ||
| { | ||
| T | ||
| missing__Bottom_side_category__assuming__Arr_oblivious_side_tag__instead; | ||
| missing__Bottom_side_category__assuming__Arr_oblivious_side_tag__instead __attribute__((unused)); | ||
| } | ||
| }; | ||
|
|
||
|
|
@@ -182,7 +182,7 @@ struct Validate_top_side_category< GeometryTraits_2, false > { | |
| template <typename T> | ||
| void missing__Top_side_category() | ||
| { | ||
| T missing__Top_side_category__assuming__Arr_oblivious_side_tag__instead; | ||
| T missing__Top_side_category__assuming__Arr_oblivious_side_tag__instead __attribute__((unused)); | ||
| } | ||
| }; | ||
|
|
||
|
|
@@ -229,7 +229,7 @@ struct Validate_right_side_category< GeometryTraits_2, false > { | |
| void missing__Right_side_category() | ||
| { | ||
| T | ||
| missing__Right_side_category__assuming__Arr_oblivious_side_tag__instead; | ||
| missing__Right_side_category__assuming__Arr_oblivious_side_tag__instead __attribute__((unused)); | ||
| } | ||
| }; | ||
|
|
||
|
|
@@ -643,4 +643,3 @@ struct Arr_all_sides_category { | |
| } // namespace CGAL | ||
|
|
||
| #endif | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -488,6 +488,10 @@ check_integrity_and_topological_planarity(bool faces) const | |
| std::size_t e_num = number_of_edges(); | ||
| std::size_t c_num = number_of_connected_components() - iso_vert_num; | ||
| std::size_t f_num = number_of_face_cycles() - c_num + 1; | ||
| /* Suppress unused-variable warnings when assertions are disabled. */ | ||
| (void)v_num; | ||
| (void)e_num; | ||
| (void)f_num; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can use |
||
| CGAL_NEF_TRACEV(fc_num);CGAL_NEF_TRACEV(iv_num);CGAL_NEF_TRACEV(iso_vert_num); | ||
| CGAL_NEF_TRACEV(v_num);CGAL_NEF_TRACEV(e_num);CGAL_NEF_TRACEV(c_num);CGAL_NEF_TRACEV(f_num); | ||
| // CGAL_assertion(fc_num == f_num && iv_num == iso_vert_num); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure this is not compiling.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 That cannot compile! Please Michael, you have to fix that file.