remove unnecessary <Runspec.hpp> includes

This commit is contained in:
Arne Morten Kvarving
2023-01-05 12:36:46 +01:00
parent 716ea14cb0
commit 469b38c321
4 changed files with 5 additions and 11 deletions

View File

@@ -132,7 +132,7 @@ namespace Opm {
const auto& connectionSet = well.getConnections();
wellCells.reserve(connectionSet.size());
for ( size_t c=0; c < connectionSet.size(); c++ )
for (std::size_t c = 0; c < connectionSet.size(); c++)
{
const auto& connection = connectionSet.get(c);
int compressed_idx = compressedIndexForInterior(connection.global_index());