diff options
author | richard <none@none> | 2010-02-10 18:40:15 -0800 |
---|---|---|
committer | richard <none@none> | 2010-02-10 18:40:15 -0800 |
commit | 6961a1501f6381ac62cc3b6dee2eff47a5fbf0d6 (patch) | |
tree | b2cda4d32757967577b84aecfd12b977d62343fd /indra | |
parent | 92ee1045f289cc2783b3e7e6f17e0682ced31560 (diff) |
build fix
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/llconsole.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llconsole.cpp b/indra/llui/llconsole.cpp index 331d78da8c..a4f69e7ac1 100644 --- a/indra/llui/llconsole.cpp +++ b/indra/llui/llconsole.cpp @@ -376,7 +376,9 @@ LLConsole::Paragraph::Paragraph (LLWString str, const LLColor4 &color, F32 add_t // static void LLConsole::updateClass() { - for (instance_iter it = beginInstances(); it != endInstances(); ++it) + LLInstanceTrackerScopedGuard guard; + + for (instance_iter it = guard.beginInstances(); it != guard.endInstances(); ++it) { it->update(); } |