Sign in
chromium
/
external
/
github.com
/
clap-rs
/
clap
/
refs/tags/upstream/v4.5.31
/
.
/
clap_complete
/
src
/
macros.rs
blob: f9e529d956696cb280a82136e6602651e8189e1c [
file
] [
log
] [
blame
]
#[
cfg
(
feature
=
"debug"
)]
macro_rules
!
debug
{
(
$
(
$arg
:
tt
)*)
=>
{
eprint
!(
"[{:>w$}] \t"
,
module_path
!(),
w
=
28
);
eprintln
!(
$
(
$arg
)*)
}
}
#[
cfg
(
not
(
feature
=
"debug"
))]
macro_rules
!
debug
{
(
$
(
$arg
:
tt
)*)
=>
{};
}