Andreas Fabri
58c466e113
Set precision of the ostringstream
2022-01-24 12:44:39 +00:00
Laurent Rineau
c678afe28d
Merge pull request #6233 from sloriot/CH3-fix_test
...
Convex hull can also be a triangle
2022-01-17 15:31:17 +01:00
Sébastien Loriot
04b5cbbec6
convex hull can also be a triangle
2022-01-12 11:53:40 +01:00
Laurent Rineau
a8901cac0c
Merge pull request #6225 from sloriot/VSA-fix_infinite_loop
...
Fix infinite loop
2022-01-12 11:39:56 +01:00
Laurent Rineau
84a504e05e
Merge pull request #6230 from sloriot/CGAL-doxy_default
...
Update latest default
2022-01-12 11:39:53 +01:00
Sébastien Loriot
1a0ef7883e
add missing \cond
2022-01-11 12:39:57 +01:00
Sébastien Loriot
e3a2eb8f23
update default
2022-01-10 11:29:46 +01:00
Sébastien Loriot
6911f0c6a3
stop is no proxy can be added
...
fix infinite loop in case no proxy could be added
and error threshold is not yet reached
2022-01-07 15:42:50 +01:00
Laurent Rineau
798cd4a00b
Merge pull request #6213 from sloriot/OTR_2-doc
...
fix \cond \endcond mismatches
2022-01-04 16:31:08 +01:00
Sébastien Loriot
9847fd7e6e
fix \cond \endcond mismatches
2022-01-04 08:42:04 +01:00
Laurent Rineau
e6b2305284
Merge pull request #6206 from sloriot/demo-boost_spirit_deprecated_headers
...
include non-deprecated headers
2022-01-03 16:47:09 +01:00
Laurent Rineau
9905eb29cf
Merge pull request #6193 from sloriot/Demo-fix_shortcut_composition
...
Fix shortcut composition
2022-01-03 16:22:20 +01:00
Laurent Rineau
2c777708d2
Merge pull request #6196 from MaelRL/Mesh_3-Remove_trailing_semicolon-GF
...
Fix: remove extra ';'
2022-01-03 16:22:18 +01:00
Laurent Rineau
30d636ca62
Merge pull request #6198 from albert-github/feature/bug_classification_endcond
...
Superfluous \endcond in Classification package
2022-01-03 16:22:16 +01:00
Laurent Rineau
9ba4b2cd6f
Merge pull request #6199 from albert-github/feature/bug_stream_support_endcond
...
Missing \endcond in Stream_support package
2022-01-03 16:22:14 +01:00
Laurent Rineau
29c083a48b
Merge pull request #6204 from sloriot/cherry-picking-1.9.3-doxy-resources
...
Add resource files for 1.9.3
2022-01-03 16:22:12 +01:00
Laurent Rineau
bd8e7c31c6
Merge pull request #6205 from sloriot/Mesh_3-doc-5.3
...
Mesh_3 doc warnings
2022-01-03 16:22:10 +01:00
Laurent Rineau
99ffda4627
Merge pull request #6207 from sloriot/CGAL-set_but_not_used_variable
...
Fix set but unused variable warning
2022-01-03 16:22:07 +01:00
Laurent Rineau
44bfd213d9
Merge pull request #6210 from lrineau/Testsuite-fix__parse-ctest-dashboard-xml.py-GF
...
CTest Testsuite: resilience to non-UTF8 characters
2022-01-03 16:22:05 +01:00
Laurent Rineau
3e8fdc6e36
Resilience to non-UTF8 characters
...
... use the method `backslashreplace` to deal with non-UTF8
characters.
See https://docs.python.org/3/library/codecs.html#error-handlers
2021-12-28 15:48:18 +01:00
Sébastien Loriot
5bcf690668
test even in release
2021-12-27 13:12:54 +01:00
Sébastien Loriot
03e1e07316
fix set but unused warning
2021-12-27 11:37:27 +01:00
Andreas Fabri
87f0e8423d
Address warning issued by clang
...
cherry-picking of d965eb4c4c
2021-12-27 11:37:27 +01:00
Sébastien Loriot
6cc458bbf2
fix set but unused variable warning
2021-12-27 11:23:46 +01:00
Sébastien Loriot
ef1563b8fc
include non-deprecated header
2021-12-27 11:15:07 +01:00
Sébastien Loriot
ef59128253
include non-deprecated headers
2021-12-27 11:08:34 +01:00
Sébastien Loriot
2a99174563
remove exe flag
2021-12-27 09:21:09 +01:00
Sébastien Loriot
7fe4c32c56
remove exe flag
2021-12-27 09:19:42 +01:00
albert-github
245aa559e3
Warnings Mesh_3 regarding non existing file (documentation)
...
cherry-picked from 72e2c7b27b
Currently we get a number of warnings when building the documentation for Mesh_3:
```
/home/cgal-testsuite/cgal_doc_build/CGAL-5.3.1-I-169/doc/Mesh_3/Mesh_3.txt:743: warning: unable to resolve reference to 'CGAL/Mesh_3/initialize_triangulation_from_labeled_image.h\' for \ref command
/home/cgal-testsuite/cgal_doc_build/CGAL-5.3.1-I-169/doc/Mesh_3/Mesh_3.txt:801: warning: unable to resolve reference to 'Mesh_3/random_labeled_image.h\' for \ref command
/home/cgal-testsuite/cgal_doc_build/CGAL-5.3.1-I-169/doc/Mesh_3/Mesh_3.txt:817: warning: unable to resolve reference to 'CGAL/Mesh_3/initialize_triangulation_from_gray_image.h\' for \ref command
```
Note the backslash at the end of the file name.
Most likely an attempt was made to escape the dot to not have it as part of the filename, though at least in doxygen 1.8.13 a closing dot was not seen as part of the filename.
Looking at the other escape character of doxygen: the commercial at sign, this was apparently working as escape in the filename as well, though in doxygen 1.8.15 this was not the case anymore either.
During one of the last changes also the backslash lost this possibility for this case and this is now consistent.
The current change (removing the backslashes) doesn't look like to alter the behavior for the 1.8.13 and master version in respect to CGAL.
2021-12-27 08:38:49 +01:00
Sébastien Loriot
67477b4fc0
add resource files for 1.9.3
...
cherry-picked from 011178da01
2021-12-27 08:33:21 +01:00
albert-github
a20887f1fa
Missing \endcond in Stream_support package
...
We get the warning:
```
include/CGAL/IO/GOCAD.h:41: warning: Conditional section with label 'SKIP_IN_MANUAL' does not have a corresponding \endcond command within this file.
```
Added \endcond in Stream_support package at an in my opinion sensible place.
2021-12-27 07:34:06 +01:00
albert-github
100581b26e
Superfluous \endcond in Classification package
...
We get the warning:
```
Classification/Label_set.h:208: warning: the \endcond does not have a corresponding \cond in this file
```
Superfluous \endcond in Classification package removed
2021-12-27 07:32:39 +01:00
Mael Rouxel-Labbé
91d862d997
Remove extra ';'
2021-12-23 11:58:28 +01:00
Sébastien Loriot
f5a85902a1
fix shortcut composition
...
Seems that I did not understand correctly the doc here:
https://doc.qt.io/qt-5/qkeysequence.html#QKeySequence-2
2021-12-22 12:05:07 +01:00
Laurent Rineau
a07c06abd0
Merge pull request #6169 from sloriot/PM-public_typdefs
...
Fix Or_pmap
2021-12-20 18:05:46 +01:00
Laurent Rineau
b22ae981e9
Merge pull request #6177 from MaelRL/SMP-Silence_warning-GF
...
Silence warning message in ARAP
2021-12-20 18:05:44 +01:00
Laurent Rineau
9a8ebfe573
Merge pull request #6179 from sloriot/HM-link_error_with_IDT
...
Move function to avoid link error + add missing halfedge function
2021-12-20 18:05:42 +01:00
Sébastien Loriot
f60d0c26e4
move function to avoid link error + add missing halfedge function
2021-12-14 18:07:55 +01:00
Laurent Rineau
51926f9237
Merge branch '5.2.x-branch' into 5.3.x-branch
2021-12-14 16:05:22 +01:00
Laurent Rineau
751d3cd868
This branch now targets 5.3.2.
2021-12-14 16:04:23 +01:00
Laurent Rineau
c0e3eb548d
This branch now targets 5.2.5.
2021-12-14 16:03:38 +01:00
Mael Rouxel-Labbé
8bb1044d2b
Silence warning message
2021-12-14 15:54:25 +01:00
Sébastien Loriot
1d36ae1a57
expose typedefs
2021-12-13 09:40:40 +01:00
Laurent Rineau
a4c13acd4c
Merge branch '5.2.x-branch' into 5.3.x-branch
2021-12-03 15:25:58 +01:00
Laurent Rineau
0992a97b95
Merge pull request #6154 from afabri/Nef_3-fix_comparison-GF
...
Nef_3: Fix broken greater-than
2021-12-03 15:25:55 +01:00
Laurent Rineau
a43edddd5f
Merge pull request #6154 from afabri/Nef_3-fix_comparison-GF
...
Nef_3: Fix broken greater-than
2021-12-03 15:24:49 +01:00
Sébastien Loriot
e1e0b737b4
fix type
2021-12-03 11:54:46 +01:00
Andreas Fabri
a1a289461b
Remove unused variables
2021-12-03 09:58:13 +00:00
Andreas Fabri
99a8b0c15d
Add test
2021-11-30 16:36:31 +00:00
Andreas Fabri
294715ff53
Fix broken greater-than
2021-11-30 16:16:23 +00:00