fix: remove weird character

Signed-off-by: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com>
This commit is contained in:
naturecodevoid
2023-05-20 14:28:33 -07:00
committed by GitHub
parent e1607d2f61
commit 5709229fdf

View File

@@ -79,7 +79,7 @@ class UnstableFeatures: ObservableObject {
} }
#endif #endif
@inline(__always) // hopefully this will help the compiler realize that if statements that use this function should be removed on non-unstable builds @inline(__always) // hopefully this will help the compiler realize that if statements that use this function should be removed on non-unstable builds
static func enabled(_ feature: AvailableUnstableFeature) -> Bool { static func enabled(_ feature: AvailableUnstableFeature) -> Bool {
#if UNSTABLE #if UNSTABLE
shared.features[feature] ?? false shared.features[feature] ?? false