# HG changeset patch # User Markus Mützel # Date 1642171714 -3600 # Node ID b7df783dbe43d243674353eb1d12f3814928b124 # Parent d162766886ceecb484f2165f713acaa6b302604c Include "octave-config.h" before other headers (bug #61812). * liboctave/util/lo-ieee.h, liboctave/util/oct-sort.h: If "octave-config.h" is included, it should appear before any other header. Fix that. diff -r d162766886ce -r b7df783dbe43 liboctave/util/lo-ieee.h --- a/liboctave/util/lo-ieee.h Fri Jan 14 08:18:55 2022 +0100 +++ b/liboctave/util/lo-ieee.h Fri Jan 14 15:48:34 2022 +0100 @@ -26,9 +26,9 @@ #if ! defined (octave_lo_ieee_h) #define octave_lo_ieee_h 1 -#include +#include "octave-config.h" -#include "octave-config.h" +#include #if defined (__cplusplus) extern "C" { diff -r d162766886ce -r b7df783dbe43 liboctave/util/oct-sort.h --- a/liboctave/util/oct-sort.h Fri Jan 14 08:18:55 2022 +0100 +++ b/liboctave/util/oct-sort.h Fri Jan 14 15:48:34 2022 +0100 @@ -87,9 +87,9 @@ #if ! defined (octave_oct_sort_h) #define octave_oct_sort_h 1 -#include +#include "octave-config.h" -#include "octave-config.h" +#include #include "lo-traits.h"