Aw: Re: dev build problem
Markus Mützel <[email protected]> Sat, 21 Aug 2021 18:34:43 +0200
| Newsgroups | gmane.comp.gnu.octave.maintainers |
|---|---|
| Message-ID | <trinity-0212a032-4b5a-46af-9ab4-e2db215466d8-1629563683393@3c-app-gmx-bap24> |
Am 20. August 2021 um 23:00 Uhr schrieb "John W. Eaton":
> Assuming you are building with the latest Octave sources, can you try
> changing
>
> OCTAVE_DEPRECATED (7, "use 'octave::warning_enabled' instead")
> inline OCTINTERP_API int warning_enabled (const std::string& id)
> {
> return octave::warning_enabled (id);
> }
>
> to
>
> OCTAVE_DEPRECATED (7, "use 'octave::warning_enabled' instead")
> inline int warning_enabled (const std::string& id)
> {
> return octave::warning_enabled (id);
> }
>
>
> in libinterperror.h? That inline function shouldn't have a visibility
> attribute.
>
> jwe
That change looks reasonable to me. And I see you already committed it to =
default.
The latest Octave sources cross-build without issues for me (including the=
Octave Forge packages in MXE Octave).
Thanks for the fix!
Markus