Skip to content

Commit 8470fd8

Browse files
committed
Fix compilation on 32-bit systems
Made small fix.
1 parent ed518c1 commit 8470fd8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

VERSIONS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
New in 4.8.2-12 (26 Mar 2024):
1+
New in 4.8.2-13 (27 Mar 2024):
22
- module -T: added -transform "cut(cube)", added -morphooptiini ori and id,
33
improved -transform "cut(cubei)", made minor fixes and improvements.
44
- module -M: made minor improvements.
5+
- general: fixed compilation on 32-bit systems.
56

67
New in 4.8.1 (02 Feb 2024):
78
- general: fixed compatibility with Gmsh (version 4.12.2).

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.2-12'
15-
release = u'4.8.2-12'
14+
version = u'4.8.2-13'
15+
release = u'4.8.2-13'
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.2-12\")
10+
set(NEPER_VERSION \"4.8.2-13\")
1111
project(neper)
1212

1313
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8.1)

src/neut/neut_oset/neut_oset1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ neut_oset_clustering (struct OL_SET OSet, struct OL_SET Grid, char *method, stru
3030
neut_oset_kdtree (&Grid, &nano_cloud, &nano_index);
3131

3232
size_t num_results = 1;
33-
std::vector<long unsigned int> ret_index(num_results);
33+
std::vector<size_t> ret_index(num_results);
3434
std::vector<double> out_dist_sqr(num_results);
3535

3636
for (i = 0; i < (int) OSet.size; i++)

0 commit comments

Comments
 (0)