Remove trailing semicolon

This commit is contained in:
Kasper 2022-02-23 05:19:01 +01:00
parent c795c15fc5
commit d3f1bf20ee
No known key found for this signature in database
GPG Key ID: 356D5C59EDCEC2D1
2 changed files with 5 additions and 2 deletions

View File

@ -6,8 +6,11 @@ on:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
check:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -204,7 +204,7 @@ pub enum Token {
#[macro_export]
macro_rules! numtok {
( $num:literal ) => {
Token::Number(d128!($num));
Token::Number(d128!($num))
}
}