fixing warnings in YProlog language support

0.6.1-post-fixes
Dr Scofield 2008-11-17 11:16:24 +00:00
parent bc72f0a9a5
commit dd37fbb137
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
// disable warning: don't see how we can code this differently short // disable warning: don't see how we can code this differently short
// of rewriting the whole thing // of rewriting the whole thing
#pragma warning disable 0168 #pragma warning disable 0168, 0219
foreach (bool l1 in Parser.parseInput(TermList)) foreach (bool l1 in Parser.parseInput(TermList))
{ {
foreach (bool l2 in YPCompiler.makeFunctionPseudoCode(TermList, FunctionCode)) foreach (bool l2 in YPCompiler.makeFunctionPseudoCode(TermList, FunctionCode))
@ -85,7 +85,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
//YPCompiler.convertStringCodesCSharp(VFC); //YPCompiler.convertStringCodesCSharp(VFC);
} }
} }
#pragma warning restore 0168 #pragma warning restore 0168, 0219
YP.seen(); YP.seen();
myCS_SW.Close(); myCS_SW.Close();
YP.told(); YP.told();