Closed jacob-carlborg closed 5 years ago
Instead of using pragma(msg) for printing deprecation messages use deprecated("message"). This allows to control if the deprecated messages should be shown or not. AppVeyor will consider any build that outputs to stderr as failed.
pragma(msg)
deprecated("message")
Thanks!
Instead of using
pragma(msg)
for printing deprecation messages usedeprecated("message")
. This allows to control if the deprecated messages should be shown or not. AppVeyor will consider any build that outputs to stderr as failed.