Skip to content

Commit 856f9be

Browse files
committed
[delaunay-psm] Update to 1.6.1
1 parent 8a738b7 commit 856f9be

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.1.3)
22

3-
project(delaunay-psm LANGUAGES C CXX VERSION 1.6.0)
3+
project(delaunay-psm LANGUAGES C CXX VERSION 1.6.1)
44

55
set(CMAKE_CXX_STANDARD 11)
66

delaunay-psm/Delaunay_psm.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3357,6 +3357,12 @@ namespace {
33573357
"sys:stats", false,
33583358
"Display statistics on exit"
33593359
);
3360+
#ifdef GEO_OS_WINDOWS
3361+
declare_arg(
3362+
"sys:show_win32_console", false,
3363+
"Display MSDOS window"
3364+
);
3365+
#endif
33603366
}
33613367

33623368
void import_arg_group_nl() {

delaunay-psm/Delaunay_psm.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4816,7 +4816,6 @@ namespace GEO {
48164816
#endif
48174817
if(
48184818
end != s && *end == '\0' && errno == 0 &&
4819-
v >= std::numeric_limits<T>::min() &&
48204819
v <= std::numeric_limits<T>::max()
48214820
) {
48224821
value = static_cast<T>(v);

0 commit comments

Comments
 (0)