Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compiler warnings #6

Merged
merged 3 commits into from
Jan 4, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix unused variables
  • Loading branch information
hmenke committed Jan 1, 2018
commit 15e2e09271a9f8599596d4ebe065edae0350c3e2
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