Skip to content

Commit

Permalink
Merge pull request #2142 from mitza-oci/macos-long-double
Browse files Browse the repository at this point in the history
macOS: sizeof long double is different on ARM64
  • Loading branch information
mitza-oci authored Oct 6, 2023
2 parents 7105510 + 17441ba commit 1affc2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ACE/ace/config-macosx-leopard.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#endif /* ! __ACE_INLINE__ */

#if !defined (ACE_SIZEOF_LONG_DOUBLE)
# define ACE_SIZEOF_LONG_DOUBLE 16
# define ACE_SIZEOF_LONG_DOUBLE __SIZEOF_LONG_DOUBLE__
#endif // ACE_SIZEOF_LONG_DOUBLE

#if defined (__GNUG__)
Expand Down
2 changes: 1 addition & 1 deletion ACE/ace/config-macosx-tiger.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#endif /* ! __ACE_INLINE__ */

#if !defined (ACE_SIZEOF_LONG_DOUBLE)
# define ACE_SIZEOF_LONG_DOUBLE 16
# define ACE_SIZEOF_LONG_DOUBLE __SIZEOF_LONG_DOUBLE__
#endif // ACE_SIZEOF_LONG_DOUBLE

#if defined (__GNUG__)
Expand Down

0 comments on commit 1affc2b

Please sign in to comment.