Skip to content

Commit

Permalink
Fix build on MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Mar 10, 2024
1 parent 0a2b96b commit e79d76b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitoutputarchive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ auto BitOutputArchive::initOutArchive() const -> CMyComPtr< IOutArchive > {
if ( mInputArchive == nullptr ) {
newArc = mArchiveCreator.library().initOutArchive( mArchiveCreator.compressionFormat() );
} else {
mInputArchive->initUpdatableArchive( &newArc );
(void)mInputArchive->initUpdatableArchive( &newArc ); // TODO: Handle errors
}
setArchiveProperties( newArc );
return newArc;
Expand Down

0 comments on commit e79d76b

Please sign in to comment.