Compiler error fix.
How can this every have compiled? Please don't push commits without first at least compiling it :/ Using '#else if' instead of '#elif'?! indra/newview/llappviewer.cpp:797:7: error: extra tokens at end of #else directive
This commit is contained in:
@@ -794,7 +794,7 @@ bool LLAppViewer::init()
|
||||
OSMB_OK);
|
||||
return 0;
|
||||
}
|
||||
#else if (_M_IX86_FP == 1 || defined(__SSE__))
|
||||
#elif (_M_IX86_FP == 1 || defined(__SSE__))
|
||||
// Without SSE support we will crash almost immediately, warn here.
|
||||
if (!gSysCPU.hasSSE())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user