Skip to content

Commit 393b428

Browse files
Minor style fix
1 parent e7eb17a commit 393b428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

palace/drivers/basesolver.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class BaseSolver
4545
int p; // Floating point precision for data
4646
int w1; // First column width = precision + 7 extra
4747
int p1; // Floating point precision for first column
48-
Table(int sp, int p, int p1_) : w(sp + p + 7), sp(sp), p(p), w1(p1_ + 7), p1(p1_) {}
48+
Table(int sp, int p, int p1) : w(sp + p + 7), sp(sp), p(p), w1(p1 + 7), p1(p1) {}
4949
};
5050
const Table table;
5151

0 commit comments

Comments
 (0)