зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1737197 - Remove semicolon in rust macro. r=bytesized
Differential Revision: https://phabricator.services.mozilla.com/D129226
This commit is contained in:
Родитель
848a31c4e7
Коммит
fca66eb4cb
|
@ -35,10 +35,10 @@ enum MyError {
|
|||
|
||||
macro_rules! bail {
|
||||
($e:expr) => {
|
||||
return Err($crate::MyError::Msg($e.to_string()));
|
||||
return Err($crate::MyError::Msg($e.to_string()))
|
||||
};
|
||||
($fmt:expr, $($arg:tt)*) => {
|
||||
return Err($crate::MyError::Msg(format!($fmt, $($arg)*)));
|
||||
return Err($crate::MyError::Msg(format!($fmt, $($arg)*)))
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче