Revert "Fix conversion of float literals in TtTreeSink"

This reverts commit 43a066c5a8.
This commit is contained in:
Jonas Schievink 2022-05-13 15:05:17 +02:00
parent 4fcdb96789
commit bde036b74e
2 changed files with 0 additions and 54 deletions

View file

@ -183,22 +183,18 @@ fn float_literal_in_tt() {
macro_rules! constant {
($( $ret:expr; )*) => {};
}
macro_rules! float_const_impl {
() => ( constant!(0.3; 3.3;); );
}
float_const_impl! {}
"#,
expect![[r#"
macro_rules! constant {
($( $ret:expr; )*) => {};
}
macro_rules! float_const_impl {
() => ( constant!(0.3; 3.3;); );
}
constant!(0.3;
3.3;
);