/in/exam3_matrix.cpp:6:68: error: default argument given for parameter 1 of 'intMatrix::intMatrix(int, int, int)' [-fpermissive]
intMatrix::intMatrix(int row = 1, int col = 1, int initialValue = 1) {
^
In file included from /in/exam3_matrix.cpp:1:0:
/in/compile/exam3_matrix.h:27:2: note: previous specification in 'intMatrix::intMatrix(int, int, int)' here
intMatrix(int r = 1 , int c = 1, int initialValue = 1); //TODO: Complete this construstor. 7Pts.
^~~~~~~~~
/in/exam3_matrix.cpp:6:68: error: default argument given for parameter 2 of 'intMatrix::intMatrix(int, int, int)' [-fpermissive]
intMatrix::intMatrix(int row = 1, int col = 1, int initialValue = 1) {
^
In file included from /in/exam3_matrix.cpp:1:0:
/in/compile/exam3_matrix.h:27:2: note: previous specification in 'intMatrix::intMatrix(int, int, int)' here
intMatrix(int r = 1 , int c = 1, int initialValue = 1); //TODO: Complete this construstor. 7Pts.
^~~~~~~~~
/in/exam3_matrix.cpp:6:68: error: default argument given for parameter 3 of 'intMatrix::intMatrix(int, int, int)' [-fpermissive]
intMatrix::intMatrix(int row = 1, int col = 1, int initialValue = 1) {
^
In file included from /in/exam3_matrix.cpp:1:0:
/in/compile/exam3_matrix.h:27:2: note: previous specification in 'intMatrix::intMatrix(int, int, int)' here
intMatrix(int r = 1 , int c = 1, int initialValue = 1); //TODO: Complete this construstor. 7Pts.
^~~~~~~~~