Skip to content
Snippets Groups Projects
Commit 0dea8763 authored by Elias Pipping's avatar Elias Pipping Committed by pipping
Browse files

Fix erroneous use of the template keyword

[[Imported from SVN: r4666]]
parent 6afea2c2
No related branches found
No related tags found
No related merge requests found
...@@ -22,8 +22,8 @@ residual(int index, VectorBlock& r) const ...@@ -22,8 +22,8 @@ residual(int index, VectorBlock& r) const
/* The following loop subtracts /* The following loop subtracts
* \f[ sum_i = \sum_j A_{ij}w_j \f] * \f[ sum_i = \sum_j A_{ij}w_j \f]
*/ */
ColumnIterator cIt = row.template begin(); ColumnIterator cIt = row.begin();
ColumnIterator cEndIt = row.template end(); ColumnIterator cEndIt = row.end();
for (; cIt!=cEndIt; ++cIt) { for (; cIt!=cEndIt; ++cIt) {
// r_i -= A_ij x_j // r_i -= A_ij x_j
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment