File tree 1 file changed +2
-2
lines changed
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 {
78
78
}
79
79
80
80
// / 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 {
82
82
if constexpr (HasLoadPrefix<C>::value) {
83
83
return ColumnAs<C>(column)->LoadPrefix (input, rows);
84
84
}
@@ -91,7 +91,7 @@ class SerializationDefault : public Serialization {
91
91
};
92
92
93
93
// / 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 {
95
95
if constexpr (HasSavePrefix<C>::value) {
96
96
ColumnAs<C>(column)->SavePrefix (output);
97
97
}
You can’t perform that action at this time.
0 commit comments