Only impl Global for DebugBelow when compiling with debug_assertions (#7102)

This PR fixes this error when compiling a release build:

<img width="504" alt="Screenshot 2024-01-30 at 2 30 38 PM"
src="https://github.com/zed-industries/zed/assets/1486634/96470735-2b9e-4945-b4c3-c86ef0168b8c">

`DebugBelow` only exists when compiling with `debug_assertions`, so we
only want to implement it using that same criterion.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-01-30 14:37:29 -05:00 committed by GitHub
parent e756602610
commit 1d794dbb37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,12 +14,13 @@ pub use taffy::style::{
Overflow, Position, Overflow, Position,
}; };
#[cfg(debug_assertions)]
/// Use this struct for interfacing with the 'debug_below' styling from your own elements. /// Use this struct for interfacing with the 'debug_below' styling from your own elements.
/// If a parent element has this style set on it, then this struct will be set as a global in /// If a parent element has this style set on it, then this struct will be set as a global in
/// GPUI. /// GPUI.
#[cfg(debug_assertions)]
pub struct DebugBelow; pub struct DebugBelow;
#[cfg(debug_assertions)]
impl Global for DebugBelow {} impl Global for DebugBelow {}
/// The CSS styling that can be applied to an element via the `Styled` trait /// The CSS styling that can be applied to an element via the `Styled` trait