0
0
Fork 0

applogic: Fix feature flags

This commit is contained in:
Jannik Beyerstedt 2026-06-28 00:27:24 +02:00
commit f0339f6261

View file

@ -5,10 +5,11 @@ use alloc::rc::Rc;
#[cfg(feature = "spat")] #[cfg(feature = "spat")]
use alloc::vec::Vec; use alloc::vec::Vec;
use log::info;
#[cfg(any(feature = "gnss", feature = "spat"))]
use log::warn;
#[cfg(feature = "spat")] #[cfg(feature = "spat")]
use log::{debug, error}; use log::{debug, error};
#[cfg(feature = "gnss")]
use log::{info, warn};
#[cfg(feature = "spat")] #[cfg(feature = "spat")]
use crate::{applogic::v2x::map, geo_alg}; use crate::{applogic::v2x::map, geo_alg};