Skip to content

Commit ebd1bae

Browse files
committed
should fix MPI compilation issues
1 parent e12f281 commit ebd1bae

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Common/include/linear_algebra/CMatrixVectorProduct.hpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,6 @@
5858
* execution - CPU or GPU.
5959
*/
6060

61-
/*!
62-
* \class CExecutionPath
63-
* \brief Dummy super class that holds the correct member functions in its child classes
64-
*/
65-
6661
template <class ScalarType>
6762
class CMatrixVectorProduct {
6863
public:
@@ -113,7 +108,7 @@ class CSysMatrixVectorProduct final : public CMatrixVectorProduct<ScalarType> {
113108
matrix.MatrixVectorProduct(u, v, geometry, config);
114109
}
115110
#else
116-
matrix.MatrixVectorProduct(u, v, geometry, config)
111+
matrix.MatrixVectorProduct(u, v, geometry, config);
117112
#endif
118113
}
119114
};

0 commit comments

Comments
 (0)