diff options
author | James Cook <james@lindenlab.com> | 2009-12-18 08:43:00 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-12-18 08:43:00 -0800 |
commit | 35862b86bd4144b11fbd30eb6e175e89509c71ed (patch) | |
tree | eafd9c5860aa2fdf4d7c73a82c372ada998a6b70 /indra/llmath/xform.cpp | |
parent | 9cd338c1f3715a9cae3bb29701984853d2de82ea (diff) |
Remove inline llwarns to cut out some linker bloat.
Diffstat (limited to 'indra/llmath/xform.cpp')
-rw-r--r-- | indra/llmath/xform.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llmath/xform.cpp b/indra/llmath/xform.cpp index ce6f756ab9..7a8b0cf6a3 100644 --- a/indra/llmath/xform.cpp +++ b/indra/llmath/xform.cpp @@ -42,6 +42,11 @@ LLXform::~LLXform() { } +// Link optimization - don't inline these llwarns +void LLXform::warn(const char* const msg) +{ + llwarns << msg << llendl; +} LLXform* LLXform::getRoot() const { |