File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class SerializationDefault : public Serialization {
7878 }
7979
8080 // / Loads column prefix from input stream.
81- bool LoadPrefix (Column* column, InputStream* input, size_t rows) const override {
81+ bool LoadPrefix ([[maybe_unused]] Column* column, [[maybe_unused]] InputStream* input, [[maybe_unused]] size_t rows) const override {
8282 if constexpr (HasLoadPrefix<C>::value) {
8383 return ColumnAs<C>(column)->LoadPrefix (input, rows);
8484 }
@@ -91,7 +91,7 @@ class SerializationDefault : public Serialization {
9191 };
9292
9393 // / Saves column prefix to output stream. Column types with prefixes must implement it.
94- void SavePrefix (Column* column, OutputStream* output) const override {
94+ void SavePrefix ([[maybe_unused]] Column* column, [[maybe_unused]] OutputStream* output) const override {
9595 if constexpr (HasSavePrefix<C>::value) {
9696 ColumnAs<C>(column)->SavePrefix (output);
9797 }
You can’t perform that action at this time.
0 commit comments