Double the macro token limit

This commit is contained in:
Jonas Schievink 2020-12-10 17:51:39 +01:00
parent 614e5a2272
commit 19508b474f

View file

@ -17,7 +17,7 @@ use crate::{
/// ///
/// If an invocation produces more tokens than this limit, it will not be stored in the database and /// If an invocation produces more tokens than this limit, it will not be stored in the database and
/// an error will be emitted. /// an error will be emitted.
const TOKEN_LIMIT: usize = 262144; const TOKEN_LIMIT: usize = 0x80000;
#[derive(Debug, Clone, Eq, PartialEq)] #[derive(Debug, Clone, Eq, PartialEq)]
pub enum TokenExpander { pub enum TokenExpander {