diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-04-25 13:58:15 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-04-25 14:38:00 -0400 |
commit | f886a438ed11468a90ecca9ba8046a6719f0402c (patch) | |
tree | 7e7c4b19d447cc6b08a6715dec1df1cc16a065ef /indra | |
parent | d98fc504a1d4bc292ba86acdda053c8b4598a193 (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; } |