Skip to content
Snippets Groups Projects
Commit 0a46023d authored by Simon Linden's avatar Simon Linden
Browse files

Fix linux build - make default check in switch statement

parent 483ad8dc
No related branches found
No related tags found
No related merge requests found
...@@ -3053,6 +3053,9 @@ void LLFloaterView::setToolbarRect(LLToolBarEnums::EToolBarLocation tb, const LL ...@@ -3053,6 +3053,9 @@ void LLFloaterView::setToolbarRect(LLToolBarEnums::EToolBarLocation tb, const LL
case LLToolBarEnums::TOOLBAR_RIGHT: case LLToolBarEnums::TOOLBAR_RIGHT:
mToolbarRightRect = toolbar_rect; mToolbarRightRect = toolbar_rect;
break; break;
default:
llwarns << "setToolbarRect() passed odd toolbar number " << (S32) tb << llendl;
break;
} }
} }
......
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