Skip to content

Commit 03bf33d

Browse files
committed
Fix compilation warning
Simple fix.
1 parent b80aed3 commit 03bf33d

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

VERSIONS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
New in 4.8.1-1 (24 Jan 2024):
1+
New in 4.8.1-2 (24 Jan 2024):
22

33
- general: fixed compatibility with Gmsh (version 4.12.2).
44

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import sphinx_rtd_theme
1212

1313
project = u'Neper'
14-
version = u'4.8.1-1'
15-
release = u'4.8.1-1'
14+
version = u'4.8.1-2'
15+
release = u'4.8.1-2'
1616
author = u'Romain Quey'
1717
copyright = u'Romain Quey'
1818
language = 'en'

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(POLICY CMP0077)
77
cmake_policy(SET CMP0077 NEW)
88
endif()
99

10-
set(NEPER_VERSION \"4.8.1-1\")
10+
set(NEPER_VERSION \"4.8.1-2\")
1111
project(neper)
1212

1313
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8.1)

src/neut/neut_mesh/neut_mesh_fscanf/neut_mesh_fscanf_msh/neut_mesh_fscanf_msh1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ neut_mesh_fscanf_msh (FILE * file, struct NODES *pNodes, struct MESH *pMesh0D,
2727
neut_mesh_fscanf_msh_head (file, &mode, &domain, ptopology);
2828

2929
else if (ut_file_nextstring_test (file, "$MeshVersion"))
30-
neut_mesh_fscanf_msh_version (file, &mode, &domain, ptopology);
30+
neut_mesh_fscanf_msh_version (file);
3131

3232
else if (ut_file_nextstring_test (file, "$Nodes"))
3333
neut_mesh_fscanf_msh_nodes (file, mode, pNodes, &node_nbs);

src/neut/neut_mesh/neut_mesh_fscanf/neut_mesh_fscanf_msh/neut_mesh_fscanf_msh_.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ extern void neut_mesh_fscanf_msh_nodeparts (FILE *file, struct NODES *pNodes);
3939
extern void neut_mesh_fscanf_msh_crysym (FILE *file, struct NODES *pNodes, struct MESH *pMesh0D,
4040
struct MESH *pMesh1D, struct MESH *pMesh2D,
4141
struct MESH *pMesh3D, struct MESH *pMeshCo);
42+
43+
extern void neut_mesh_fscanf_msh_version (FILE *file);

0 commit comments

Comments
 (0)