use correct macro

This commit is contained in:
Maximilian Ammann 2022-03-14 16:56:01 +01:00
parent 47403842cd
commit da4d1e8a4b

View File

@ -31,11 +31,7 @@ impl ScheduleMethod {
coords: TileCoords,
) {
match self {
#[cfg(not(any(
target_os = "android",
all(target_arch = "aarch64", not(target_os = "android")),
target_arch = "wasm32"
)))]
#[cfg(not(target_arch = "wasm32"))]
ScheduleMethod::Tokio(method) => {
method.schedule_tile_request(scheduler, request_id, coords)
}