Skip to content

Commit 435c74e

Browse files
committed
update
1 parent d4c91f6 commit 435c74e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
3232
//#[cfg(feature = "kalc-lib")]
3333
//pub type C = kalc_lib::rug::Complex;
3434
#[cfg(feature = "kalc-lib")]
35-
pub type I = kalc_lib::types::f64::Integer;
35+
pub type I = kalc_lib::types::f64::Integer<i128>;
3636
#[cfg(feature = "kalc-lib")]
37-
pub type F = kalc_lib::types::f64::Float;
37+
pub type F = kalc_lib::types::f64::Float<f64>;
3838
#[cfg(feature = "kalc-lib")]
39-
pub type C = kalc_lib::types::f64::Complex;
39+
pub type C = kalc_lib::types::f64::Complex<f64>;
4040
#[cfg_attr(target_arch = "wasm32", wasm_bindgen(start))]
4141
pub fn main() {
4242
#[cfg(feature = "wasm-console")]

0 commit comments

Comments
 (0)