summaryrefslogtreecommitdiff
path: root/indra/llprimitive/llmodel.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2011-04-15 14:12:12 -0500
committerDave Parks <davep@lindenlab.com>2011-04-15 14:12:12 -0500
commit6a491424677086a84d180ace0b91f1eefaeb67ba (patch)
tree0968856aadb685678d7e2fc7dc8b8b0442203fc9 /indra/llprimitive/llmodel.cpp
parent8275820df01e9918f254f1a2cd373eb723b88715 (diff)
Remove some asserts that cause the physics shape display to error out on occasion.
Diffstat (limited to 'indra/llprimitive/llmodel.cpp')
-rwxr-xr-xindra/llprimitive/llmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp
index 03b893de29..5af1122451 100755
--- a/indra/llprimitive/llmodel.cpp
+++ b/indra/llprimitive/llmodel.cpp
@@ -2067,7 +2067,7 @@ void LLModel::Decomposition::fromLLSD(LLSD& decomp)
std::set<U64> valid;
//must have at least 4 points
- llassert(count > 3);
+ //llassert(count > 3);
for (U32 j = 0; j < count; ++j)
{
@@ -2085,7 +2085,7 @@ void LLModel::Decomposition::fromLLSD(LLSD& decomp)
}
//each hull must contain at least 4 unique points
- llassert(valid.size() > 3);
+ //llassert(valid.size() > 3);
}
}