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
commit 7471cef938
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,8 @@ bool PyAction::operator==(const PyAction& other) const {
#ifndef EMBEDDED_PYTHON #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; return false;
} }