]> Repositorios git - scryer-prolog.git/commitdiff
Drop 2 extra lines flagged by 'cargo fmt'
authorDavid C. Norris <[email protected]>
Sun, 10 Aug 2025 22:44:08 +0000 (18:44 -0400)
committerDavid C. Norris <[email protected]>
Sun, 10 Aug 2025 22:44:08 +0000 (18:44 -0400)
src/machine/system_calls/special_math.rs

index fab83d55b602919ce9c1cfc1b75160cdafb80378..fbb1c5361ffc8e4a0cab296d0ca9e66ffe05b077 100644 (file)
@@ -27,7 +27,6 @@ macro_rules! return_f64_reg {
 }
 
 impl Machine {
-
     #[inline(always)]
     pub(crate) fn erf(&mut self) {
         let x = number_as_f64!(self, 1);
@@ -119,5 +118,4 @@ impl Machine {
         let x = float_alloc!(invbetai(a, b, p), self.machine_st.arena);
         return_f64_reg!(self, x, 4);
     }
-
 }