fixing warnings in YProlog language support
parent
bc72f0a9a5
commit
dd37fbb137
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue