diff options
author | Richard Nelson <richard@lindenlab.com> | 2009-10-20 22:05:00 +0000 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2009-10-20 22:05:00 +0000 |
commit | fdc848cf72f755b3ce924e12625ec9923495f9bc (patch) | |
tree | 63ee4f050383b77359995f30cf96413539fe4b29 /indra/llui/llrngwriter.cpp | |
parent | 2c05f237d23ce1a3b8de06fd710b575929cf247c (diff) |
removed unnecessary static variable instantiations to improve compile times
moved a bunch of template class statics to cpp files
also added filename parameter to LLXUIParser::readXUI for better debugging of XUI errors
reviewed by James
Diffstat (limited to 'indra/llui/llrngwriter.cpp')
-rw-r--r-- | indra/llui/llrngwriter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llrngwriter.cpp b/indra/llui/llrngwriter.cpp index cf23e3af15..7e3d4b92d3 100644 --- a/indra/llui/llrngwriter.cpp +++ b/indra/llui/llrngwriter.cpp @@ -108,7 +108,8 @@ void LLRNGWriter::addDefinition(const std::string& type_name, const LLInitParam: LLXMLNodePtr old_element_node = mElementNode; LLXMLNodePtr old_child_node = mChildrenNode; - addDefinition(child_name, (*LLDefaultParamBlockRegistry::instance().getValue(type))()); + //FIXME: add LLDefaultParamBlockRegistry back when working on schema generation + //addDefinition(child_name, (*LLDefaultParamBlockRegistry::instance().getValue(type))()); mElementNode = old_element_node; mChildrenNode = old_child_node; |