diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-07-12 12:25:21 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-07-12 12:25:21 +0100 |
commit | d3f114d6901877bb79ae9719f59d681fa6a9d494 (patch) | |
tree | 7a7eb880f6a35f4370a7b5c48da7b1ccf11c0f66 | |
parent | 5190e7c1bb75e6c8f8396eef5a74b03cb2237b86 (diff) |
Changing "typename const T" to "const typename T" makes gcc much happier. cool.
-rw-r--r-- | indra/llui/lluictrlfactory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lluictrlfactory.h b/indra/llui/lluictrlfactory.h index ff99712c5f..dc43b311a7 100644 --- a/indra/llui/lluictrlfactory.h +++ b/indra/llui/lluictrlfactory.h @@ -182,7 +182,7 @@ public: void popFactoryFunctions(); template<typename T> - static T* createWidget(typename const T::Params& params, LLView* parent = NULL) + static T* createWidget(const typename T::Params& params, LLView* parent = NULL) { T* widget = NULL; |