Skip to content

Commit

Permalink
Fix output object
Browse files Browse the repository at this point in the history
  • Loading branch information
gvoskuilen committed Dec 10, 2024
1 parent cbd1b9e commit c6f82e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sst/core/interfaces/stdMem.h
Original file line number Diff line number Diff line change
Expand Up @@ -1106,9 +1106,10 @@ class StandardMem : public SubComponent
/* convert(FlushCache) temporarily has a default implementation for backward compatibility
* It will transition to pure virtual in SST 16
*/
virtual SST::Event* convert(FlushCache* request)
virtual SST::Event* convert(FlushCache* UNUSED(request))
{
out->fatal(CALL_INFO, -1, "Error: Event converter for FlushCache requests is not implemented.\n");
Output out("", 0, 0, Output::STDERR);
out.fatal(CALL_INFO, -1, "Error: Event converter for FlushCache requests is not implemented.\n");
}
virtual SST::Event* convert(FlushResp* request) = 0;
virtual SST::Event* convert(ReadLock* request) = 0;
Expand Down

0 comments on commit c6f82e5

Please sign in to comment.