Skip to content

Commit 62c23cc

Browse files
committed
fix build
1 parent 6ebb0bd commit 62c23cc

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,12 @@ class ElementAdapter final : public abstract::ElementAdapter,
459459
}
460460
[[nodiscard]] std::optional<std::string>
461461
frame_x(const ElementIdentifier element_id) const override {
462+
(void)element_id;
462463
return std::nullopt;
463464
}
464465
[[nodiscard]] std::optional<std::string>
465466
frame_y(const ElementIdentifier element_id) const override {
467+
(void)element_id;
466468
return std::nullopt;
467469
}
468470
[[nodiscard]] std::optional<std::string>
@@ -552,16 +554,21 @@ class ElementAdapter final : public abstract::ElementAdapter,
552554
return "";
553555
}
554556

555-
[[nodiscard]] const char *get_style_name(const ElementIdentifier) const {
557+
[[nodiscard]] const char *
558+
get_style_name(const ElementIdentifier element_id) const {
559+
(void)element_id;
556560
return {}; // TODO
557561
}
558562

559-
[[nodiscard]] ResolvedStyle get_partial_style(const ElementIdentifier) const {
563+
[[nodiscard]] ResolvedStyle
564+
get_partial_style(const ElementIdentifier element_id) const {
565+
(void)element_id;
560566
return {}; // TODO
561567
}
562568

563569
[[nodiscard]] ResolvedStyle
564570
get_intermediate_style(const ElementIdentifier element_id) const {
571+
(void)element_id;
565572
return {}; // TODO
566573
}
567574
};

0 commit comments

Comments
 (0)