diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-09-13 09:20:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 09:20:57 -0400 |
commit | 7ced89435d702b8a6bc02908769bed47e20d6ec0 (patch) | |
tree | bb4735ba807f4d4caf7cf6161462557cfc9864bd /indra/llcommon/tests | |
parent | 3d191c09b1b1eb6726fe67f6fdf5445d83536578 (diff) | |
parent | d6f3f20af6cccf53746cbf1fdf39bc4e235c4f0d (diff) |
Merge pull request #2548 from secondlife/lua-frame-profile
Make Develop->Render Tests->Frame Profile dump JSON to a file too (#2412)
Diffstat (limited to 'indra/llcommon/tests')
-rw-r--r-- | indra/llcommon/tests/llrand_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llrand_test.cpp b/indra/llcommon/tests/llrand_test.cpp index a0dd4ef576..85dd53ce96 100644 --- a/indra/llcommon/tests/llrand_test.cpp +++ b/indra/llcommon/tests/llrand_test.cpp @@ -38,7 +38,7 @@ // testing extent < 0, negate the return value and the extent before passing // into ensure_in_range(). template <typename NUMBER> -void ensure_in_range(const std::string_view& name, +void ensure_in_range(std::string_view name, NUMBER value, NUMBER low, NUMBER high) { auto failmsg{ stringize(name, " >= ", low, " (", value, ')') }; |