Remove the 5 integer msg! form

This commit is contained in:
Michael Vines
2021-12-10 13:13:30 -08:00
parent eeb97fe7ce
commit c5c699a918
8 changed files with 25 additions and 44 deletions

View File

@ -11,13 +11,4 @@ macro_rules! info {
($msg:expr) => {
$crate::log::sol_log($msg)
};
($arg1:expr, $arg2:expr, $arg3:expr, $arg4:expr, $arg5:expr) => {
$crate::log::sol_log_64(
$arg1 as u64,
$arg2 as u64,
$arg3 as u64,
$arg4 as u64,
$arg5 as u64,
)
};
}