Skip to content

Commit

Permalink
Fix unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
hmenke committed Jan 1, 2018
1 parent a25cdb3 commit 15e2e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wignerSymbols-cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ double wigner6j(double l1, double l2, double l3,
}

double wigner3j_auxA(double l1, double l2, double l3,
double m1, double m2, double m3)
double m1, double /*m2*/, double /*m3*/)
{
double T1 = l1*l1-pow(l2-l3,2.0);
double T2 = pow(l2+l3+1.0,2.0)-l1*l1;
Expand All @@ -475,7 +475,7 @@ double wigner3j_auxB(double l1, double l2, double l3,
}

double wigner6j_auxA(double l1, double l2, double l3,
double l4, double l5, double l6)
double /*l4*/, double l5, double l6)
{
double T1 = l1*l1-pow(l2-l3,2.0);
double T2 = pow(l2+l3+1.0,2.0)-l1*l1;
Expand Down

0 comments on commit 15e2e09

Please sign in to comment.