1
Fork 0

Remove redundant 'static in the compiler

This commit is contained in:
est31 2020-10-18 17:28:00 +02:00
parent a687420d17
commit b87e4f36e7
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ use std::str;
use tracing::{debug, info};
pub const MACRO_ARGUMENTS: Option<&'static str> = Some("macro arguments");
pub const MACRO_ARGUMENTS: Option<&str> = Some("macro arguments");
#[macro_use]
pub mod parser;