Skip to content

Commit 404757c

Browse files
committed
Fixes indentation in example code.
I don't really care for tabs any more, but let's just keep this consistent.
1 parent b941015 commit 404757c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ main(int argc, char *argv[]) {
3636
if ( argc == 3 ) {
3737
nrows = atoi(argv[1]);
3838
ncols = atoi(argv[2]);
39-
}
39+
}
4040

4141
Matrix<double> matrix(nrows, ncols);
4242

@@ -60,7 +60,7 @@ main(int argc, char *argv[]) {
6060
std::cout << std::endl;
6161

6262
// Apply Munkres algorithm to matrix.
63-
Munkres<double> m;
63+
Munkres<double> m;
6464
m.solve(matrix);
6565

6666
// Display solved matrix.

0 commit comments

Comments
 (0)