Skip to content
Snippets Groups Projects
Commit 2f6062e5 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Remove erroneous 'inline' on LLPanelStandStopFlying::getInstance()

This is ignored by every compiler except Linux g++ 4.4.3 in Release mode. In
that case, it literally does cause getInstance() to be inlined, therefore
llmoveview.o contains no such symbol, therefore the Linux viewer link fails in
Release mode. But for a method implementation in a .cpp file of a method
declared in a .h file, 'inline' is just wrong. Removing it fixes Release build.
parent a26386c5
No related branches found
No related tags found
No related merge requests found
......@@ -552,7 +552,7 @@ LLPanelStandStopFlying::LLPanelStandStopFlying() :
}
// static
inline LLPanelStandStopFlying* LLPanelStandStopFlying::getInstance()
LLPanelStandStopFlying* LLPanelStandStopFlying::getInstance()
{
static LLPanelStandStopFlying* panel = getStandStopFlyingPanel();
return panel;
......
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