1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 05:07:46 +00:00

Jamcrc should be crate level public

This doesn't make any functional difference (because the module isn't
public) but whatever, still want to do it
This commit is contained in:
Joshua Goins 2024-04-15 18:38:22 -04:00
parent 1c3c75a144
commit f80b290c4e

View file

@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com> // SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-License-Identifier: GPL-3.0-or-later
pub struct Jamcrc { pub(crate) struct Jamcrc {
table: [u32; 256], table: [u32; 256],
} }