aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2020-12-10 17:03:37 +0000
committerJonas Schievink <[email protected]>2020-12-10 17:03:37 +0000
commit829d9d36ebd3b86f447b12ba573cf3e6cb5b0373 (patch)
tree987f33d9a64a43c194eb76f6745c7492d84b8275 /crates/hir_expand
parent19508b474f6024ac5e0a645af59a1eba1075a344 (diff)
Use decimal notation
Diffstat (limited to 'crates/hir_expand')
-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 245b4362d..ffb70f723 100644
--- a/crates/hir_expand/src/db.rs
+++ b/crates/hir_expand/src/db.rs
@@ -17,7 +17,7 @@ use crate::{
17/// 17///
18/// If an invocation produces more tokens than this limit, it will not be stored in the database and 18/// If an invocation produces more tokens than this limit, it will not be stored in the database and
19/// an error will be emitted. 19/// an error will be emitted.
20const TOKEN_LIMIT: usize = 0x80000; 20const TOKEN_LIMIT: usize = 524288;
21 21
22#[derive(Debug, Clone, Eq, PartialEq)] 22#[derive(Debug, Clone, Eq, PartialEq)]
23pub enum TokenExpander { 23pub enum TokenExpander {