-
Notifications
You must be signed in to change notification settings - Fork 100
Outdated warning about macro used immediately before being undefined #423
Copy link
Copy link
Closed
Labels
Milestone
Description
SpacemanDMM/crates/dreammaker/src/preprocessor.rs
Lines 684 to 691 in 039e820
| fn check_danger_ident(&mut self, name: &str, kind: &str) { | |
| if let Some(loc) = self.danger_idents.get(name) { | |
| self.context.register_error(DMError::new(*loc, format!( | |
| "macro {:?} used immediately before being {}:\n\ | |
| https://www.byond.com/forum/?post=2072419", name, kind | |
| )).set_severity(Severity::Warning)); | |
| } | |
| } |
Lummox marked this as fixed in 515.1607 https://www.byond.com/forum/post/2072419, and my code compiles without problems.
Reactions are currently unavailable