aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_macros/src')
-rw-r--r--mingling_macros/src/systems/dispatch_auto.rs1
-rw-r--r--mingling_macros/src/systems/dispatch_list_gen.rs1
-rw-r--r--mingling_macros/src/systems/dispatch_phf_gen.rs1
-rw-r--r--mingling_macros/src/systems/dispatch_tree_gen.rs1
4 files changed, 0 insertions, 4 deletions
diff --git a/mingling_macros/src/systems/dispatch_auto.rs b/mingling_macros/src/systems/dispatch_auto.rs
index 54784e2..4cbb6fd 100644
--- a/mingling_macros/src/systems/dispatch_auto.rs
+++ b/mingling_macros/src/systems/dispatch_auto.rs
@@ -1,4 +1,3 @@
-// Doc Not Optimize
//! Auto dispatch-strategy selection (no dispatch feature enabled).
//!
//! Picks the matching strategy at macro-expansion time from the normalized
diff --git a/mingling_macros/src/systems/dispatch_list_gen.rs b/mingling_macros/src/systems/dispatch_list_gen.rs
index 52b0e86..19c487c 100644
--- a/mingling_macros/src/systems/dispatch_list_gen.rs
+++ b/mingling_macros/src/systems/dispatch_list_gen.rs
@@ -1,4 +1,3 @@
-// Doc Not Optimize
use std::cmp::Reverse;
use proc_macro2::TokenStream;
diff --git a/mingling_macros/src/systems/dispatch_phf_gen.rs b/mingling_macros/src/systems/dispatch_phf_gen.rs
index 97210e2..a85a410 100644
--- a/mingling_macros/src/systems/dispatch_phf_gen.rs
+++ b/mingling_macros/src/systems/dispatch_phf_gen.rs
@@ -1,4 +1,3 @@
-// Doc Not Optimize
//! Perfect-hash dispatch generator (`dispatch_phf` feature).
//!
//! Generates a `dispatch_args()` body using a **CHD minimal perfect hash**
diff --git a/mingling_macros/src/systems/dispatch_tree_gen.rs b/mingling_macros/src/systems/dispatch_tree_gen.rs
index 08fc78b..30e04a8 100644
--- a/mingling_macros/src/systems/dispatch_tree_gen.rs
+++ b/mingling_macros/src/systems/dispatch_tree_gen.rs
@@ -1,4 +1,3 @@
-// Doc Not Optimize
//! Char-level trie dispatch generator (`dispatch_tree` feature).
//!
//! Builds a hardcoded match tree: at each depth, group nodes by character.