Remove trailing semicolon
This commit is contained in:
parent
c795c15fc5
commit
d3f1bf20ee
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
@ -6,8 +6,11 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|||||||
@ -204,7 +204,7 @@ pub enum Token {
|
|||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! numtok {
|
macro_rules! numtok {
|
||||||
( $num:literal ) => {
|
( $num:literal ) => {
|
||||||
Token::Number(d128!($num));
|
Token::Number(d128!($num))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user