Skip to content

Commit

Permalink
formatting...
Browse files Browse the repository at this point in the history
  • Loading branch information
ptahmose committed Feb 11, 2024
1 parent cb591c2 commit 15e7198
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Src/libCZI/CziReaderWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ void CCziReaderWriter::Finish()
this->sbBlkDirectory.EnumEntries(
[&](size_t index, const CCziSubBlockDirectoryBase::SubBlkEntry& e)->bool
{
f(index, e);
return true;
f(index, e);
return true;
});
};
sbBlkDirWriteInfo.writeFunc = std::bind(&CCziReaderWriter::WriteToOutputStream, this, placeholders::_1, placeholders::_2, placeholders::_3, placeholders::_4, placeholders::_5);
Expand Down Expand Up @@ -311,8 +311,8 @@ void CCziReaderWriter::Finish()
this->attachmentDirectory.EnumEntries(
[&](size_t index, const CCziAttachmentsDirectoryBase::AttachmentEntry& e)->bool
{
f(index, e);
return true;
f(index, e);
return true;
});
};
attchmntDirWriteInfo.writeFunc = std::bind(&CCziReaderWriter::WriteToOutputStream, this, placeholders::_1, placeholders::_2, placeholders::_3, placeholders::_4, placeholders::_5);
Expand Down

0 comments on commit 15e7198

Please sign in to comment.