diff options
Diffstat (limited to 'indra/lscript/lscript_compile/indra.l')
| -rw-r--r-- | indra/lscript/lscript_compile/indra.l | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/lscript/lscript_compile/indra.l b/indra/lscript/lscript_compile/indra.l index a8fbcbe260..ee3492b071 100644 --- a/indra/lscript/lscript_compile/indra.l +++ b/indra/lscript/lscript_compile/indra.l @@ -9,13 +9,15 @@ FS			(f|F)  %p 5000  %{ -#include <stdio.h> -#include "stdtypes.h" +#include "linden_common.h" +// Deal with the fact that lex/yacc generates unreachable code +#ifdef LL_WINDOWS +#pragma warning (disable : 4702) // warning C4702: unreachable code +#endif	//	LL_WINDOWS  #include "llmath.h"  #include "lscript_tree.h"  #include "lscript_typecheck.h"  #include "lscript_resource.h" -#include "llfile.h"  #if LL_WINDOWS  #include "ytab.h"  #else  | 
