Skip to content

Commit

Permalink
[macOS] Apple does not seem to have any typedef for unsigned long int
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyas Atre <[email protected]>
  • Loading branch information
SAtacker committed Jan 23, 2024
1 parent c1afbfa commit cbc194f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libs/core/debugging/src/print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ namespace hpx::debug {
std::ostream&, std::int32_t const&, int);
template HPX_CORE_EXPORT void print_dec(
std::ostream&, std::int64_t const&, int);
#ifdef __APPLE__
template HPX_CORE_EXPORT void print_dec(
std::ostream&, unsigned long const&, int);
#endif
template HPX_CORE_EXPORT void print_dec(
std::ostream&, std::uint64_t const&, int);

Expand Down

0 comments on commit cbc194f

Please sign in to comment.