Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing explicit lifetime name for copy_deferred_lighting_id name (…
…#10128) # Objective On nightly there is a warning on a missing lifetime: ```bash warning: `&` without an explicit lifetime name cannot be used here ``` The details are in rust-lang/rust#115010, but the bottom line is that in associated constants elided lifetimes are no longer allowed to be implicitly defined. This fixes the only place where it is missing. ## Solution - Add explicit `'static` lifetime
- Loading branch information