metal: make post_commit_margin configurable
This commit is contained in:
parent
76b0f2f734
commit
02ece60909
24 changed files with 224 additions and 55 deletions
|
|
@ -154,7 +154,7 @@ macro_rules! ty {
|
|||
|
||||
ty!(str, 'a, String, &'a str, v, v.as_str(), "a string");
|
||||
ty!(int, 'a, Integer, i64, v, *v, "an integer");
|
||||
ty!(flt, 'a, Float, f64, v, *v, "a float");
|
||||
// ty!(flt, 'a, Float, f64, v, *v, "a float");
|
||||
ty!(bol, 'a, Boolean, bool, v, *v, "a boolean");
|
||||
ty!(arr, 'a, Array, &'a [Spanned<Value>], v, &**v, "an array");
|
||||
// ty!(tbl, 'a, Table, &'a IndexMap<Spanned<String>, Spanned<Value>>, v, v, "a table");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue