Skip to content

Commit a704c98

Browse files
committed
fix build
1 parent 50cab21 commit a704c98

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

src/odr/internal/odf/odf_document.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,12 @@ class ElementAdapter final : public abstract::ElementAdapter,
214214

215215
[[nodiscard]] bool
216216
element_is_unique(const ElementIdentifier element_id) const override {
217+
(void)element_id;
217218
return true;
218219
}
219220
[[nodiscard]] bool
220221
element_is_self_locatable(const ElementIdentifier element_id) const override {
222+
(void)element_id;
221223
return true;
222224
}
223225
[[nodiscard]] bool

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,17 @@ class ElementAdapter final : public abstract::ElementAdapter,
203203

204204
[[nodiscard]] bool
205205
element_is_unique(const ElementIdentifier element_id) const override {
206+
(void)element_id;
206207
return true;
207208
}
208209
[[nodiscard]] bool
209210
element_is_self_locatable(const ElementIdentifier element_id) const override {
211+
(void)element_id;
210212
return true;
211213
}
212214
[[nodiscard]] bool
213215
element_is_editable(const ElementIdentifier element_id) const override {
216+
(void)element_id;
214217
return true;
215218
}
216219
[[nodiscard]]

src/odr/internal/ooxml/spreadsheet/ooxml_spreadsheet_document.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,17 @@ class ElementAdapter final : public abstract::ElementAdapter,
170170

171171
[[nodiscard]] bool
172172
element_is_unique(const ElementIdentifier element_id) const override {
173+
(void)element_id;
173174
return true;
174175
}
175176
[[nodiscard]] bool
176177
element_is_self_locatable(const ElementIdentifier element_id) const override {
178+
(void)element_id;
177179
return true;
178180
}
179181
[[nodiscard]] bool
180182
element_is_editable(const ElementIdentifier element_id) const override {
183+
(void)element_id;
181184
return true;
182185
}
183186
[[nodiscard]]

src/odr/internal/ooxml/text/ooxml_text_document.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,17 @@ class ElementAdapter final : public abstract::ElementAdapter,
179179

180180
[[nodiscard]] bool
181181
element_is_unique(const ElementIdentifier element_id) const override {
182+
(void)element_id;
182183
return true;
183184
}
184185
[[nodiscard]] bool
185186
element_is_self_locatable(const ElementIdentifier element_id) const override {
187+
(void)element_id;
186188
return true;
187189
}
188190
[[nodiscard]] bool
189191
element_is_editable(const ElementIdentifier element_id) const override {
192+
(void)element_id;
190193
return true;
191194
}
192195
[[nodiscard]]

0 commit comments

Comments
 (0)