diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2022-11-13 05:59:40 -1000 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2022-11-13 05:59:40 -1000 |
commit | 690a5027fb1760c31a72cc1c2fb44ae41ab340d2 (patch) | |
tree | 881a4c5cb3a6508d437049ecffe66f78b73446a7 /indra/llcommon/llsys_objc.h | |
parent | 4349cb6165e983ff6bdd45ad1b82bb98bfc0436f (diff) | |
parent | 076737cb6c28e9e5ea47cd4cb6ea9c5c514e578b (diff) |
DRTVWR-575: Merge brad's xcode-14.1 fixes with nat's
Diffstat (limited to 'indra/llcommon/llsys_objc.h')
-rw-r--r-- | indra/llcommon/llsys_objc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/llsys_objc.h b/indra/llcommon/llsys_objc.h index 35599a574b..aebc600032 100644 --- a/indra/llcommon/llsys_objc.h +++ b/indra/llcommon/llsys_objc.h @@ -27,7 +27,9 @@ #ifndef LL_LLSYS_OBJC_H #define LL_LLSYS_OBJC_H -bool LLGetDarwinOSInfo(int &major, int &minor, int &patch); +#include <cstdint> + +bool LLGetDarwinOSInfo(int64_t &major, int64_t &minor, int64_t &patch); #endif // LL_LLSYS_OBJC_H |