diff options
Diffstat (limited to 'modules/codec/c++/csv.hpp')
-rw-r--r-- | modules/codec/c++/csv.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/codec/c++/csv.hpp b/modules/codec/c++/csv.hpp index 3cb11c2..2d11bff 100644 --- a/modules/codec/c++/csv.hpp +++ b/modules/codec/c++/csv.hpp @@ -209,6 +209,8 @@ public: template<typename ToDecode> static error_or<void> decode(data<Schema,encode::Csv>& from, data<Schema, ToDecode>& to){ + (void) to; + (void) from; return make_error<err::not_implemented>(); } |