diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2022-11-13 06:10:02 -1000 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2022-11-13 06:10:02 -1000 |
commit | c3ddd7092085a204b6241dc027c70972b08ee202 (patch) | |
tree | ef81854edf7d36df92c22753870d589222138cd8 /indra | |
parent | 690a5027fb1760c31a72cc1c2fb44ae41ab340d2 (diff) |
DRTVWR-575: Explain that NSInteger is really int64_t.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llsys_objc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llsys_objc.h b/indra/llcommon/llsys_objc.h index aebc600032..b48ff97bdb 100644 --- a/indra/llcommon/llsys_objc.h +++ b/indra/llcommon/llsys_objc.h @@ -29,6 +29,8 @@ #include <cstdint> +// C++ land doesn't define NSInteger, and we don't want to introduce that for +// this one case, so use int64_t instead (which is equivalent). bool LLGetDarwinOSInfo(int64_t &major, int64_t &minor, int64_t &patch); |