From 55f1d00c3b931235b343df474df416a101361855 Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Fri, 3 Jun 2011 23:10:53 +0200 Subject: [PATCH] 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 --- indra/newview/llappviewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 95d419d6e..e3f95f5ca 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -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()) {