Fix clippy long literal lacking separators warnings

This commit is contained in:
Brandon Fish
2018-12-08 00:19:55 -06:00
parent 704556e45e
commit bd55552b4a
3 changed files with 4 additions and 4 deletions

View File

@ -22,11 +22,11 @@ pub use self::storage::{align_memory, static_alloc};
pub use self::utils::{is_emscripten_module, allocate_on_stack, allocate_cstr_on_stack};
// TODO: Magic number - how is this calculated?
const TOTAL_STACK: u32 = 5242880;
const TOTAL_STACK: u32 = 5_242_880;
// TODO: Magic number - how is this calculated?
const DYNAMICTOP_PTR_DIFF: u32 = 1088;
// TODO: make this variable
const STATIC_BUMP: u32 = 215536;
const STATIC_BUMP: u32 = 215_536;
fn stacktop(static_bump: u32) -> u32 {
align_memory(dynamictop_ptr(static_bump) + 4)