Skip to content

Commit

Permalink
fix remaining 64-bit problems reported in, and fix #468
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Mar 31, 2024
1 parent ad4c2ff commit 1e9de6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- fix 64-bit problem in Minuit revealed by LTO (#468) - thanks @eli-schwartz for report

2.085_02 2024-03-25
- PP add loop(n=value) idiom to start not at 0
- add whichover, inspired by https://stackoverflow.com/questions/77551179/perl-pdl-indexing-and-which
Expand Down
4 changes: 2 additions & 2 deletions Libtmp/Minuit/minuitlib/futils.f
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
subroutine abre(n,nombre,mode)

integer n
integer*8 n
character*(*) nombre
character*(*) mode

Expand All @@ -10,7 +10,7 @@ subroutine abre(n,nombre,mode)

subroutine cierra(n)

integer n
integer*8 n

close(n)

Expand Down

0 comments on commit 1e9de6f

Please sign in to comment.