Fix tap.cpp compilation on macOS: add ulong typedef

The 'ulong' type is not defined on macOS/Darwin. Add a conditional
typedef to enable TAP test compilation on macOS without affecting
Linux builds.
pull/5486/head
René Cannaò 2 months ago
parent 77ae235ea2
commit a538532d59

@ -38,6 +38,10 @@ typedef char my_bool;
using std::size_t;
#ifdef __APPLE__
typedef unsigned long ulong;
#endif
extern std::vector<std::string> noise_failures;
extern std::mutex noise_failure_mutex;

Loading…
Cancel
Save