Fixed compilation noise

This commit is contained in:
2026-07-18 10:01:58 +01:00
parent fc74dc5d9b
commit 512b683d55
2 changed files with 1 additions and 16 deletions
-15
View File
@@ -31,18 +31,3 @@ assets = ["resources"]
icon = "resources/icon.png" icon = "resources/icon.png"
desktop_entry = "other/rs-dublinbus.desktop" desktop_entry = "other/rs-dublinbus.desktop"
auto-link=true auto-link=true
[target.aarch64-unknown-linux-gnu]
cc = "aarch64-linux-gnu-gcc"
cxx = "aarch64-linux-gnu-g++"
ar = "aarch64-linux-gnu-ar"
ranlib = "aarch64-linux-gnu-ranlib"
linker = "aarch64-linux-gnu-ld"
[target.arm-unknown-linux-gnueabihf]
cc = "arm-linux-gnueabihf-gcc"
cxx = "arm-linux-gnueabihf-g++"
ar = "arm-linux-gnueabihf-ar"
# ranlib = "arm-linux-gnueabihf-ranlib"
linker = "arm-linux-gnueabihf-gcc"
+1 -1
View File
@@ -101,7 +101,7 @@ impl Gtfs<'_> {
/// Load a GTFS structure from a zip file /// Load a GTFS structure from a zip file
pub fn load(prefs: &Preferences) -> Result<Gtfs, Error> { pub fn load(prefs: &Preferences) -> Result<Gtfs<'_>, Error> {
_ = refresher::refresh(prefs); _ = refresher::refresh(prefs);