diff options
author | James Cook <james@lindenlab.com> | 2008-03-19 22:36:26 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2008-03-19 22:36:26 +0000 |
commit | 4c21366d9e34f48ff978ff81197c7357f0a047b1 (patch) | |
tree | af6b4af04a4ea26f21ddf431800fc7fccbe1133d | |
parent | 23639bca3a7b73d81bd706fd1dee65163433eb70 (diff) |
Removed assert causing Debug build warnings/errors on Windows. Reviewed with Qarl. OK with Josh.
-rw-r--r-- | indra/llmath/llvolume.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp index 44fef9daf6..984c13e0d8 100644 --- a/indra/llmath/llvolume.cpp +++ b/indra/llmath/llvolume.cpp @@ -1858,9 +1858,6 @@ inline U32 sculpt_xy_to_index(U32 x, U32 y, U16 sculpt_width, U16 sculpt_height, { U32 index = (x + y * sculpt_width) * sculpt_components; - // attempt to resolve DEV-11158 - remove assert later. - llassert(index < sculpt_width * sculpt_height * sculpt_components); - return index; } |