Skip to content

Commit 5cb2b5a

Browse files
committed
It works now!
1 parent 7e5f4b9 commit 5cb2b5a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ rkyv = { version = "0.7.44", features = [
1818
"validation",
1919
"size_64",
2020
"std",
21+
"archive_le",
2122
], default-features = false }
2223
serde = { version = "1.0.202", features = ["derive"] }
2324
serde_cbor = "0.11.2"

src/file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl File {
4848
trans: TransitoryType,
4949
) -> Result<TransitoryMatrix, ReadMatrixError> {
5050
Ok(match trans {
51-
TransitoryType::Float => TransitoryMatrix::Float(self.read_matrix::<f64, _, _>(false)?),
51+
TransitoryType::Float => TransitoryMatrix::Float(self.read_matrix::<f64, _, _>(true)?),
5252
TransitoryType::Str => TransitoryMatrix::Str(self.read_matrix::<String, _, _>(true)?),
5353
})
5454
}

0 commit comments

Comments
 (0)