Skip to content

Commit

Permalink
wip #116: Comment out unused arguments to doPostRead
Browse files Browse the repository at this point in the history
  • Loading branch information
ckampm committed Apr 14, 2020
1 parent 81a98a3 commit 3fb6422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ namespace ChimeraTK { namespace LNMBackend {
throw ChimeraTK::logic_error("LogicalNameMappingBackend MonostableTriggerPluginPlugin: Reading is not allowed.");
}

void doPostRead(TransferType, bool hasNewData) override {
void doPostRead(TransferType, bool /*hasNewData*/) override {
throw ChimeraTK::logic_error("LogicalNameMappingBackend MonostableTriggerPluginPlugin: Reading is not allowed.");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace ChimeraTK {
return true;
}

void doPostRead(TransferType, bool hasNewData) override { currentVersion = {}; }
void doPostRead(TransferType, bool /*hasNewData*/) override { currentVersion = {}; }

TransferFuture doReadTransferAsync() override { // LCOV_EXCL_LINE
// This function is not needed and will never be called. If readAsync() is
Expand Down

0 comments on commit 3fb6422

Please sign in to comment.