summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authorRye <rye@lindenlab.com>2024-10-14 22:15:43 -0700
committerAndrey Lihatskiy <alihatskiy@productengine.com>2025-03-12 18:37:27 +0200
commitd915cf17dfb4ddd79830f3ff9fea004ba9d2b61c (patch)
tree1c1814e0e3d3dbaa1dc9a8b4c6ed4533118704c8 /indra/test
parent5aedf53f0180e268d7c47d767e79c2ac4beb4798 (diff)
Try to parallelize xcode builds further and add more headers to PCH to reduce build time
Diffstat (limited to 'indra/test')
-rw-r--r--indra/test/lltut.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/test/lltut.h b/indra/test/lltut.h
index e56b4e8d1c..581a08654d 100644
--- a/indra/test/lltut.h
+++ b/indra/test/lltut.h
@@ -135,7 +135,7 @@ namespace tut
inline void ensure_memory_matches(const void* actual, U32 actual_len, const void* expected,U32 expected_len)
{
- ensure_memory_matches(NULL, actual, actual_len, expected, expected_len);
+ ensure_memory_matches("", actual, actual_len, expected, expected_len);
}
template <class T,class Q>