Skip to content

Commit a4dca40

Browse files
committed
Delete unused variable
1 parent a2cd3f6 commit a4dca40

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/unittest/utils/math_test.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ TEST(UtilsMathTest, FactorsTest) {
1717

1818
bool is_primitive_root_naive(int m, int g) {
1919
assert(1 <= g && g < m);
20-
auto prs = factors(m - 1);
2120
int x = 1;
2221
for (int i = 1; i <= m - 2; i++) {
2322
x = (int)((long long)(x)*g % m);

0 commit comments

Comments
 (0)