Skip to content
Snippets Groups Projects
Commit d3f114d6 authored by Tofu Linden's avatar Tofu Linden
Browse files

Changing "typename const T" to "const typename T" makes gcc much happier. cool.

parent 5190e7c1
No related branches found
No related tags found
No related merge requests found
...@@ -182,7 +182,7 @@ class LLUICtrlFactory : public LLSingleton<LLUICtrlFactory> ...@@ -182,7 +182,7 @@ class LLUICtrlFactory : public LLSingleton<LLUICtrlFactory>
void popFactoryFunctions(); void popFactoryFunctions();
template<typename T> 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; T* widget = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment