Skip to content

Commit 32ffcf6

Browse files
committed
Armadillo 15.4.0
1 parent 7d5e92a commit 32ffcf6

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2026-06-18 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* inst/include/armadillo_bits/: Armadillo 15.4.0
4+
15
2026-06-16 Dirk Eddelbuettel <edd@debian.org>
26

37
* DESCRIPTION (Version, Date): RcppArmadillo 15.3.91-1

inst/include/armadillo_bits/arma_version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323

2424
#define ARMA_VERSION_MAJOR 15
25-
#define ARMA_VERSION_MINOR 3
26-
#define ARMA_VERSION_PATCH 91
27-
#define ARMA_VERSION_NAME "15.4-RC1"
25+
#define ARMA_VERSION_MINOR 4
26+
#define ARMA_VERSION_PATCH 0
27+
#define ARMA_VERSION_NAME "Medium Roast Agave"
2828

2929

3030

inst/include/armadillo_bits/diskio_meat.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,10 @@ diskio::gen_tmp_name(const std::string& x)
399399

400400
for(std::size_t i=0; i < suffix1_length; ++i, ++count) { out[count] = suffix1[i]; }
401401

402-
local_distr(local_engine); // ignore first random number
402+
const std::size_t junk = local_distr(local_engine); // ignore first random number
403+
arma_ignore(junk);
403404

404-
for(std::size_t i=0; i < suffix2_length; ++i, ++count) { out[count] = charlist[ local_distr(local_engine)]; }
405+
for(std::size_t i=0; i < suffix2_length; ++i, ++count) { out[count] = charlist[ local_distr(local_engine) ]; }
405406

406407
return out;
407408
}

0 commit comments

Comments
 (0)