Selaa lähdekoodia

fix release build warnings

Evan Almloff 2 vuotta sitten
vanhempi
commit
b33e0ed3ea
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. 3 0
      packages/core/src/create.rs

+ 3 - 0
packages/core/src/create.rs

@@ -11,6 +11,7 @@ use std::iter::Peekable;
 use std::rc::Rc;
 use TemplateNode::*;
 
+#[cfg(debug_assertions)]
 fn sort_bfs(paths: &[&'static [u8]]) -> Vec<(usize, &'static [u8])> {
     let mut with_indecies = paths.iter().copied().enumerate().collect::<Vec<_>>();
     with_indecies.sort_unstable_by(|(_, a), (_, b)| {
@@ -386,6 +387,8 @@ impl<'b> VirtualDom {
     }
 
     /// Insert a new template into the VirtualDom's template registry
+    // used in conditional compilation
+    #[allow(unused_mut)]
     pub(crate) fn register_template(&mut self, mut template: Template<'static>) {
         let (path, byte_index) = template.name.rsplit_once(':').unwrap();
         let byte_index = byte_index.parse::<usize>().unwrap();