diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-28 18:36:51 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-28 18:36:51 -0400 |
commit | 3c63cc9c55b1193f2876e7523f0b6766f5a8c5ac (patch) | |
tree | 09cd2565417f4e374fac5fc9c2659fdf25a69466 /indra/newview/llversioninfo.cpp | |
parent | 41d937d2c03502c31c4366e75ebe5dbcf7b0d906 (diff) |
SL-18837: Make LLVersionInfo::getBuild() S64 for GitHub run IDs.
Diffstat (limited to 'indra/newview/llversioninfo.cpp')
-rw-r--r-- | indra/newview/llversioninfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llversioninfo.cpp b/indra/newview/llversioninfo.cpp index 376a7fce76..62bfa24e29 100644 --- a/indra/newview/llversioninfo.cpp +++ b/indra/newview/llversioninfo.cpp @@ -91,7 +91,7 @@ S32 LLVersionInfo::getPatch() return LL_VIEWER_VERSION_PATCH; } -S32 LLVersionInfo::getBuild() +S64 LLVersionInfo::getBuild() { return LL_VIEWER_VERSION_BUILD; } |