Merge pull request #3208 from akva2/fix_gaslift_impl_include

fixed: do not include headers into Opm namespace
This commit is contained in:
Bård Skaflestad 2021-05-04 18:04:35 +02:00 committed by GitHub
commit 6b02180ca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View File

@ -221,8 +221,8 @@ namespace Opm
};
};
#include "GasLiftStage2_impl.hpp"
} // namespace Opm
#include "GasLiftStage2_impl.hpp"
#endif // OPM_GASLIFT_STAGE2_HEADER_INCLUDED

View File

@ -31,6 +31,8 @@
#include <fmt/format.h>
namespace Opm {
template<typename TypeTag>
GasLiftStage2<TypeTag>::
GasLiftStage2(
@ -1140,4 +1142,4 @@ updateRates(const std::string &well_name)
this->alq += delta_alq;
}
} // namespace Opm

View File

@ -75,8 +75,8 @@ namespace Opm
std::optional<bool> increase_;
};
#include "GasLiftWellState_impl.hpp"
} // namespace Opm
#include "GasLiftWellState_impl.hpp"
#endif // OPM_GASLIFT_WELL_STATE_HEADER_INCLUDED