Skip to content

Commit 2e3a137

Browse files
committed
fix build
1 parent 5778fac commit 2e3a137

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/odr/internal/ooxml/presentation/ooxml_presentation_document.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,14 +572,17 @@ class ElementAdapter final : public abstract::ElementAdapter,
572572

573573
[[nodiscard]] bool
574574
table_cell_is_covered(const ElementIdentifier element_id) const override {
575+
(void)element_id;
575576
return false;
576577
}
577578
[[nodiscard]] TableDimensions
578579
table_cell_span(const ElementIdentifier element_id) const override {
580+
(void)element_id;
579581
return {1, 1}; // TODO
580582
}
581583
[[nodiscard]] ValueType
582584
table_cell_value_type(const ElementIdentifier element_id) const override {
585+
(void)element_id;
583586
return ValueType::string;
584587
}
585588
[[nodiscard]] TableCellStyle
@@ -589,6 +592,7 @@ class ElementAdapter final : public abstract::ElementAdapter,
589592

590593
[[nodiscard]] AnchorType
591594
frame_anchor_type(const ElementIdentifier element_id) const override {
595+
(void)element_id;
592596
return AnchorType::at_page;
593597
}
594598
[[nodiscard]] std::optional<std::string>

0 commit comments

Comments
 (0)