diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-04-25 13:58:15 -0400 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-04-29 23:51:02 +0300 |
commit | 0907fdd9263dbf6853b3aea86ac057c6d7fd6f3c (patch) | |
tree | 30538acdb9f38133f92eb516a98a3ec65a69a1bb /indra | |
parent | 7719d54f4e649f2731a9d4248f2ca5f61da1320e (diff) |
Adapt llimageworker_test for updated virtual method API.
This was a broken test that got all the way to viewer release and the main
branch.
(cherry picked from commit a33a9d29380e6c1a0a9cc539be309d47adef4acf)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llimage/tests/llimageworker_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/tests/llimageworker_test.cpp b/indra/llimage/tests/llimageworker_test.cpp index 0a97b739b0..ffcd7d257f 100644 --- a/indra/llimage/tests/llimageworker_test.cpp +++ b/indra/llimage/tests/llimageworker_test.cpp @@ -98,7 +98,7 @@ namespace tut done = res; *done = false; } - virtual void completed(bool success, LLImageRaw* raw, LLImageRaw* aux) + virtual void completed(bool success, LLImageRaw* raw, LLImageRaw* aux, U32) { *done = true; } |