Skip to content

Commit

Permalink
Visibility for exception handler on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Nov 18, 2024
1 parent 104ed36 commit 7d55464
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions oct-conf-post-public.in.h
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ octave_unused_parameter (const T&)
# endif
#else
# define OCTAVE_API OCTAVE_IMPORT
# if defined (_WIN32) || defined (__CYGWIN__)
# if defined (_WIN32) || defined (__CYGWIN__) || (defined (__APPLE__) && defined (__MACH__))
# define OCTAVE_EXCEPTION_API OCTAVE_IMPORT
# else
# define OCTAVE_EXCEPTION_API OCTAVE_EXPORT
Expand Down Expand Up @@ -199,7 +199,7 @@ octave_unused_parameter (const T&)
# endif
#else
# define OCTINTERP_API OCTAVE_IMPORT
# if defined (_WIN32) || defined (__CYGWIN__)
# if defined (_WIN32) || defined (__CYGWIN__) || (defined (__APPLE__) && defined (__MACH__))
# define OCTINTERP_EXCEPTION_API OCTAVE_IMPORT
# else
# define OCTINTERP_EXCEPTION_API OCTAVE_EXPORT
Expand Down Expand Up @@ -232,7 +232,7 @@ octave_unused_parameter (const T&)
# endif
#else
# define OCTARRAY_API OCTAVE_IMPORT
# if defined (_WIN32) || defined (__CYGWIN__)
# if defined (_WIN32) || defined (__CYGWIN__) || (defined (__APPLE__) && defined (__MACH__))
# define OCTARRAY_EXCEPTION_API OCTAVE_IMPORT
# else
# define OCTARRAY_EXCEPTION_API OCTAVE_EXPORT
Expand Down Expand Up @@ -265,7 +265,7 @@ octave_unused_parameter (const T&)
# endif
#else
# define OCTGRAPHICS_API OCTAVE_IMPORT
# if defined (_WIN32) || defined (__CYGWIN__)
# if defined (_WIN32) || defined (__CYGWIN__) || (defined (__APPLE__) && defined (__MACH__))
# define OCTGRAPHICS_EXCEPTION_API OCTAVE_IMPORT
# else
# define OCTGRAPHICS_EXCEPTION_API OCTAVE_EXPORT
Expand Down Expand Up @@ -298,7 +298,7 @@ octave_unused_parameter (const T&)
# endif
#else
# define OCTMEX_API OCTAVE_IMPORT
# if defined (_WIN32) || defined (__CYGWIN__)
# if defined (_WIN32) || defined (__CYGWIN__) || (defined (__APPLE__) && defined (__MACH__))
# define OCTMEX_EXCEPTION_API OCTAVE_IMPORT
# else
# define OCTMEX_EXCEPTION_API OCTAVE_EXPORT
Expand Down Expand Up @@ -331,7 +331,7 @@ octave_unused_parameter (const T&)
# endif
#else
# define OCTGUI_API OCTAVE_IMPORT
# if defined (_WIN32) || defined (__CYGWIN__)
# if defined (_WIN32) || defined (__CYGWIN__) || (defined (__APPLE__) && defined (__MACH__))
# define OCTGUI_EXCEPTION_API OCTAVE_IMPORT
# else
# define OCTGUI_EXCEPTION_API OCTAVE_EXPORT
Expand Down

0 comments on commit 7d55464

Please sign in to comment.