Fix more whitespace tab->space issues.

This commit is contained in:
Atgeirr Flø Rasmussen 2014-12-01 14:21:16 +01:00
parent 9e26afaaba
commit 35a8bd4791
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ namespace Opm
/// \param[in] grid A 2d grid object.
/// \param[in, out] nb A cell-cell neighbourhood table, such as from vertexNeighbours().
void orderCounterClockwise(const UnstructuredGrid& grid,
SparseTable<int>& nb);
SparseTable<int>& nb);
} // namespace Opm

View File

@ -76,6 +76,6 @@ BOOST_AUTO_TEST_CASE(cartesian_2d_orderCounterClockwise)
const SparseTable<int> truth(elem, elem + num_elem, rowsizes, rowsizes + num_rows);
BOOST_CHECK(vnb == truth);
for (int c = 0; c < num_rows; ++c) {
BOOST_CHECK_EQUAL_COLLECTIONS(vnb[c].begin(), vnb[c].end(), truth[c].begin(), truth[c].end());
BOOST_CHECK_EQUAL_COLLECTIONS(vnb[c].begin(), vnb[c].end(), truth[c].begin(), truth[c].end());
}
}