forked from mirrors/gstreamer-rs
gstreamer: error: Allow using variable expansion in loggable_error!
macro
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/issues/490 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1332>
This commit is contained in:
parent
bd9b1d6e38
commit
bd4122e334
1 changed files with 0 additions and 13 deletions
|
@ -62,12 +62,6 @@ impl ErrorMessage {
|
|||
|
||||
#[macro_export]
|
||||
macro_rules! loggable_error(
|
||||
// Plain strings
|
||||
($cat:expr, $msg:expr) => {
|
||||
$crate::LoggableError::new($cat.clone(), $crate::glib::bool_error!($msg))
|
||||
};
|
||||
|
||||
// Format strings
|
||||
($cat:expr, $($msg:tt)*) => { {
|
||||
$crate::LoggableError::new($cat.clone(), $crate::glib::bool_error!($($msg)*))
|
||||
}};
|
||||
|
@ -75,13 +69,6 @@ macro_rules! loggable_error(
|
|||
|
||||
#[macro_export]
|
||||
macro_rules! result_from_gboolean(
|
||||
// Plain strings
|
||||
($ffi_bool:expr, $cat:expr, $msg:expr) => {
|
||||
$crate::glib::result_from_gboolean!($ffi_bool, $msg)
|
||||
.map_err(|bool_err| $crate::LoggableError::new($cat.clone(), bool_err))
|
||||
};
|
||||
|
||||
// Format strings
|
||||
($ffi_bool:expr, $cat:expr, $($msg:tt)*) => { {
|
||||
$crate::glib::result_from_gboolean!($ffi_bool, $($msg)*)
|
||||
.map_err(|bool_err| $crate::LoggableError::new($cat.clone(), bool_err))
|
||||
|
|
Loading…
Reference in a new issue