aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/hir_expand/src/db.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_expand/src/db.rs b/crates/hir_expand/src/db.rs
index dcc038bcd..710694a34 100644
--- a/crates/hir_expand/src/db.rs
+++ b/crates/hir_expand/src/db.rs
@@ -223,7 +223,7 @@ fn macro_expand_with_arg(
223 let ExpandResult(tt, err) = macro_rules.0.expand(db, lazy_id, &macro_arg.0); 223 let ExpandResult(tt, err) = macro_rules.0.expand(db, lazy_id, &macro_arg.0);
224 // Set a hard limit for the expanded tt 224 // Set a hard limit for the expanded tt
225 let count = tt.count(); 225 let count = tt.count();
226 if count > 65536 { 226 if count > 262144 {
227 return (None, Some(format!("Total tokens count exceed limit : count = {}", count))); 227 return (None, Some(format!("Total tokens count exceed limit : count = {}", count)));
228 } 228 }
229 (Some(Arc::new(tt)), err.map(|e| format!("{:?}", e))) 229 (Some(Arc::new(tt)), err.map(|e| format!("{:?}", e)))