Merge pull request #2944 from bska/chase-api-update-for-non-python

Update Signature for PyAction::run When !EMBEDDED_PYTHON
This commit is contained in:
Bård Skaflestad
2022-01-26 21:12:44 +01:00
committed by GitHub

View File

@@ -91,7 +91,8 @@ bool PyAction::operator==(const PyAction& other) const {
#ifndef EMBEDDED_PYTHON
bool PyAction::run(EclipseState&, Schedule&, std::size_t, SummaryState&) const
bool PyAction::run(EclipseState&, Schedule&, std::size_t, SummaryState&,
const std::function<void(const std::string&, const std::vector<std::string>&)>&) const
{
return false;
}