diff --git a/scopegraphs/src/render/mod.rs b/scopegraphs/src/render/mod.rs index bc5260c..e8e9ae5 100644 --- a/scopegraphs/src/render/mod.rs +++ b/scopegraphs/src/render/mod.rs @@ -118,7 +118,8 @@ pub trait RenderScopeData { self.render_node().is_some() } - fn explicit_relabel(&self, scope_id: usize) -> Option { + /// Allows you to relabel specific scope IDs, can be useful for documentation purposes. + fn explicit_relabel(&self, _scope_id: usize) -> Option { None } }