aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorCharles Krinke2008-03-21 23:31:32 +0000
committerCharles Krinke2008-03-21 23:31:32 +0000
commit2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae (patch)
tree531299c8489edeed6ac6ecae03c324535d2a2031 /OpenSim/Region/Environment/Scenes
parentAdds in +, -, and / operators for Rotations (and fixes Mantis 671) (diff)
downloadopensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.zip
opensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.tar.gz
opensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.tar.bz2
opensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.tar.xz
Remove a couple more compiler warnings by commenting unused variables.
This takes us down to 15 compiler warnings on a VS2005 C# build.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/SimStatsReporter.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs b/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs
index 3d8a720..68140f4 100644
--- a/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs
+++ b/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs
@@ -85,7 +85,9 @@ namespace OpenSim.Region.Environment.Scenes
85 private int m_physicsMS = 0; 85 private int m_physicsMS = 0;
86 private int m_imageMS = 0; 86 private int m_imageMS = 0;
87 private int m_otherMS = 0; 87 private int m_otherMS = 0;
88 private int m_scriptMS = 0; 88
89//Ckrinke: (3-21-08) Comment out to remove a compiler warning. Bring back into play when needed.
90//Ckrinke private int m_scriptMS = 0;
89 91
90 private int m_rootAgents = 0; 92 private int m_rootAgents = 0;
91 private int m_childAgents = 0; 93 private int m_childAgents = 0;
@@ -272,7 +274,9 @@ namespace OpenSim.Region.Environment.Scenes
272 m_physicsMS = 0; 274 m_physicsMS = 0;
273 m_imageMS = 0; 275 m_imageMS = 0;
274 m_otherMS = 0; 276 m_otherMS = 0;
275 m_scriptMS = 0; 277
278//Ckrinke This variable is not used, so comment to remove compiler warning until it is used.
279//Ckrinke m_scriptMS = 0;
276 } 280 }
277 281
278 # region methods called from Scene 282 # region methods called from Scene