diff options
author | James Cook <james@lindenlab.com> | 2009-11-28 16:51:02 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-11-28 16:51:02 -0800 |
commit | f280c43d616d013747a9aab05141635868e00136 (patch) | |
tree | 22a502368ea5c0526fab30caf7679cff42272cdb /indra/newview/llfloatertestlistview.cpp | |
parent | fd71800bb1c68c5d06199cf06de469ab7acdd2dc (diff) |
Use extern template for common singletons to reduce code bloat/link time.
Diffstat (limited to 'indra/newview/llfloatertestlistview.cpp')
-rw-r--r-- | indra/newview/llfloatertestlistview.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llfloatertestlistview.cpp b/indra/newview/llfloatertestlistview.cpp index 7171449738..ae96dfc0ed 100644 --- a/indra/newview/llfloatertestlistview.cpp +++ b/indra/newview/llfloatertestlistview.cpp @@ -31,6 +31,12 @@ */ #include "llviewerprecompiledheaders.h" +int do_foo(int i) +{ + return i + 1; +} + +/* #include "llfloatertestlistview.h" LLFloaterTestListView::LLFloaterTestListView(const LLSD& seed) @@ -39,3 +45,4 @@ LLFloaterTestListView::LLFloaterTestListView(const LLSD& seed) LLFloaterTestListView::~LLFloaterTestListView() {} +*/ |