DRTVWR-575: Explain that NSInteger is really int64_t.

master
Nat Goodspeed 2022-11-13 06:10:02 -10:00
parent 690a5027fb
commit c3ddd70920
1 changed files with 2 additions and 0 deletions

View File

@ -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);