Skip to content

Commit 54d8cc7

Browse files
committed
Merge pull request #11000 from pao/topic/quote-using-warning
using warning: set off method name only
2 parents f2e3d33 + d1ed2ac commit 54d8cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/module.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ static jl_binding_t *jl_get_binding_(jl_module_t *m, jl_sym_t *var, modstack_t *
164164
if (owner != NULL && tempb->owner != b->owner &&
165165
!(tempb->constp && tempb->value && b->constp && b->value == tempb->value)) {
166166
jl_printf(JL_STDERR,
167-
"Warning: both `%s` and `%s` export `%s`; uses of it in module `%s` must be qualified\n",
167+
"Warning: both %s and %s export \"%s\"; uses of it in module %s must be qualified\n",
168168
owner->name->name, imp->name->name, var->name, m->name->name);
169169
// mark this binding resolved, to avoid repeating the warning
170170
(void)jl_get_binding_wr(m, var);

0 commit comments

Comments
 (0)