Skip to content

Commit 404a9bf

Browse files
committed
fix
1 parent d6349b1 commit 404a9bf

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/odr/internal/oldms/oldms_file.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ EncryptionState LegacyMicrosoftFile::encryption_state() const noexcept {
7979

8080
std::shared_ptr<abstract::DecodedFile>
8181
LegacyMicrosoftFile::decrypt(const std::string &password) const noexcept {
82+
(void)password;
8283
return {}; // TODO throw
8384
}
8485

src/odr/internal/pdf/pdf_file.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ EncryptionState PdfFile::encryption_state() const noexcept {
2323

2424
std::shared_ptr<abstract::DecodedFile>
2525
PdfFile::decrypt(const std::string &password) const noexcept {
26+
(void)password;
2627
return nullptr;
2728
}
2829

0 commit comments

Comments
 (0)