unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* warning: possibly unused local top-level variable `%foo?-procedure'
@ 2024-06-05 15:02 Tomas Volf
  2024-06-06 20:02 ` Linus Björnstam
  0 siblings, 1 reply; 4+ messages in thread
From: Tomas Volf @ 2024-06-05 15:02 UTC (permalink / raw)
  To: guile-user

[-- Attachment #1: Type: text/plain, Size: 1272 bytes --]

Hello,

I am getting following warning from a guild compile:

    warning: possibly unused local top-level variable `%foo?-procedure'

And I am not sure how to tackle it.  This is my full source code:

    (define-module (x)
      #:use-module (srfi srfi-9)
      #:export (<foo>
                foo?
                make-foo))

    (define-record-type <foo> (make-foo) foo?)

When I try to compile it:

    $ guild compile -W 3 -o x.go x.scm
    x.scm:7:0: warning: possibly unused local top-level variable `%foo?-procedure'
    wrote `x.go'

I would (for obvious reasons) like to keep my compilation warning-free.  I can
think of two approaches:

1. Export the %foo?-procedure
     I think this would confuse downstream users, since they are not expected to
     use it directly.

2. Mark the procedure as used
      In C I could use `(void)proc;', is there an equivalent of that construct
      in Guile?

Are there other options?  How are you approaching it?

Thank you and have a nice day,
Tomas Volf

PS: I am not even sure why this warning happens, the `foo?' syntax transformer
is exported and *does* reference it (as far as I can tell from ,expand).

--
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-06-07  7:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-05 15:02 warning: possibly unused local top-level variable `%foo?-procedure' Tomas Volf
2024-06-06 20:02 ` Linus Björnstam
2024-06-06 22:52   ` Tomas Volf
2024-06-07  7:26     ` Linus Björnstam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).