aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-20 16:11:29 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-20 16:11:29 +0000
commit9bc76282929efeda02709fae687ddc862ffcfbdd (patch)
tree29b101ddcafca115d72629f0845a1d36acee6fac
parentafffced10c2b64e2b2e5f4a825c8f14a8c0ac95d (diff)
remove some unused variables caught by gcc
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@759 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/gr/Schwarzschild_EF.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gr/Schwarzschild_EF.cc b/src/gr/Schwarzschild_EF.cc
index 3d87606..9960bfc 100644
--- a/src/gr/Schwarzschild_EF.cc
+++ b/src/gr/Schwarzschild_EF.cc
@@ -241,7 +241,7 @@ void Schwarzschild_EF_gij_xyz(fp m, fp epsilon,
fp r, theta, phi;
local_coords::r_theta_phi_of_xyz(x,y,z, r,theta,phi);
-fp g_rr, g_theta_theta, g_phi_phi;
+fp g_rr, g_theta_theta;
Schwarzschild_EF_gij_rthetaphi(m,
r, theta, phi,
g_rr, g_theta_theta);
@@ -270,7 +270,7 @@ void Schwarzschild_EF_Kij_xyz(fp m, fp epsilon,
fp r, theta, phi;
local_coords::r_theta_phi_of_xyz(x,y,z, r,theta,phi);
-fp K_rr, K_theta_theta, K_phi_phi;
+fp K_rr, K_theta_theta;
Schwarzschild_EF_Kij_rthetaphi(m,
r, theta, phi,
K_rr, K_theta_theta);