Skip to content

Commit 829d9d3

Browse files
Use decimal notation
1 parent 19508b4 commit 829d9d3

File tree

1 file changed

+1
-1
lines changed
  • crates/hir_expand/src

1 file changed

+1
-1
lines changed

crates/hir_expand/src/db.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::{
1717
///
1818
/// If an invocation produces more tokens than this limit, it will not be stored in the database and
1919
/// an error will be emitted.
20-
const TOKEN_LIMIT: usize = 0x80000;
20+
const TOKEN_LIMIT: usize = 524288;
2121

2222
#[derive(Debug, Clone, Eq, PartialEq)]
2323
pub enum TokenExpander {

0 commit comments

Comments
 (0)