Skip to content

Commit 7e3c9db

Browse files
committed
Fix compilation on arm archi.
1 parent 64616ed commit 7e3c9db

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ include(GNUInstallDirs)
5858

5959
SET (CMAKE_RELEASE_VERSION_MAJOR "5" )
6060
SET (CMAKE_RELEASE_VERSION_MINOR "5" )
61-
SET (CMAKE_RELEASE_VERSION_PATCH "0" )
62-
SET (CMAKE_RELEASE_DATE "Oct. 8, 2020" )
61+
SET (CMAKE_RELEASE_VERSION_PATCH "1" )
62+
SET (CMAKE_RELEASE_DATE "Oct. 14, 2020" )
6363

6464
SET (CMAKE_RELEASE_VERSION
6565
"${CMAKE_RELEASE_VERSION_MAJOR}.${CMAKE_RELEASE_VERSION_MINOR}.${CMAKE_RELEASE_VERSION_PATCH}")

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
|**develop branch**|[![Build Status][dev-build]][dev-sq-build]|[![Quality Gate][dev-qual-gate]][dev-sq-qual-gate]|[![Vulnerabilities][dev-vulnerabilities]][dev-sq-vulnerabilities]|[![Coverage][dev-coverage]][dev-sq-coverage]|[![Duplication (%)][dev-code-dpl]][dev-sq-code-dpl]|
2727

2828

29-
[master-build]: https://ci.inria.fr/mmg/buildStatus/icon?job=Mmg-multiConf
30-
[master-sq-build]: https://ci.inria.fr/mmg/job/Mmg-multiConf
29+
[master-build]: https://ci.inria.fr/mmg/buildStatus/icon?job=Mmg-multiConf-master
30+
[master-sq-build]: https://ci.inria.fr/mmg/job/Mmg-multiConf-master
3131

3232
[master-qual-gate]: https://sonarqube.inria.fr/sonarqube/api/badges/gate?key=cardamom%3Ammg%3Agithub%3Amaster
3333
[master-sq-qual-gate]: https://sonarqube.inria.fr/sonarqube/dashboard?id=cardamom%3Ammg%3Agithub%3Amaster

src/mmgs/boulep_s.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ int boulet(MMG5_pMesh mesh,int start,int ip,int *list) {
104104
* the ball.
105105
* \param list pointer toward the computed ball of point.
106106
*
107-
* Find all triangles sharing \a ip, \f$list[0] = start\f$. Do not stop when
107+
* Find all triangles sharing \a ip, \f$list[0] = start\f$ . Do not stop when
108108
* crossing ridge. Check whether resulting configuration is manifold.
109109
*
110110
*/

src/mmgs/colver_s.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ int colver(MMG5_pMesh mesh,int *list,int ilist) {
348348
* \param list pointer toward the ball of the point to collapse.
349349
* \return 1 if success, 0 if fail.
350350
*
351-
* Collapse edge \f$list[0]%3\f$ in tet \f$list[0]/3\f$ (\f$ ip->i1\f$ ) for a
351+
* Collapse edge \f$list[0]\%3\f$ in tet \f$list[0]/3\f$ (\f$ ip->i1\f$ ) for a
352352
* ball of the collapsed point of size 3: the collapsed point is removed.
353353
*
354354
*/

0 commit comments

Comments
 (0)