aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs
diff options
context:
space:
mode:
authorDr Scofield2008-11-17 11:06:24 +0000
committerDr Scofield2008-11-17 11:06:24 +0000
commitae0bcab35e58796da3d214edbfade6ac302cb82c (patch)
treece1f279e1d634f7bfb81e70f999f20bd17bd6d46 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs
parentUse the message transfer module to pass items across the grid via the profile (diff)
downloadopensim-SC_OLD-ae0bcab35e58796da3d214edbfade6ac302cb82c.zip
opensim-SC_OLD-ae0bcab35e58796da3d214edbfade6ac302cb82c.tar.gz
opensim-SC_OLD-ae0bcab35e58796da3d214edbfade6ac302cb82c.tar.bz2
opensim-SC_OLD-ae0bcab35e58796da3d214edbfade6ac302cb82c.tar.xz
adding #pragma warnings to yprolog language support
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs
index b237a82..94e39c4 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/Functor3.cs
@@ -55,7 +55,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.YieldProlog
55 55
56 // disable warning on l1, don't see how we can 56 // disable warning on l1, don't see how we can
57 // code this differently 57 // code this differently
58 #pragma warning disable 0168 58 #pragma warning disable 0168, 0219
59 /// If arg is another Functor3, then succeed (yield once) if this and arg have the 59 /// If arg is another Functor3, then succeed (yield once) if this and arg have the
60 /// same name and all functor args unify, otherwise fail (don't yield). 60 /// same name and all functor args unify, otherwise fail (don't yield).
61 /// If arg is a Variable, then call its unify to unify with this. 61 /// If arg is a Variable, then call its unify to unify with this.
@@ -84,7 +84,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.YieldProlog
84 yield return false; 84 yield return false;
85 } 85 }
86 } 86 }
87 #pragma warning restore 0168 87 #pragma warning restore 0168, 0219
88 88
89 public override string ToString() 89 public override string ToString()
90 { 90 {