This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch iotdb in repository https://gitbox.apache.org/repos/asf/tsfile.git
commit 0af0ec3b5af8872158b742ffce6f7c8d104fd805 Author: Hongzhi Gao <[email protected]> AuthorDate: Thu Jun 27 11:23:21 2024 +0800 fix/plain_decoder (#125) --- cpp/src/encoding/plain_decoder.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/src/encoding/plain_decoder.h b/cpp/src/encoding/plain_decoder.h index c6e04fe2..fb65bcad 100644 --- a/cpp/src/encoding/plain_decoder.h +++ b/cpp/src/encoding/plain_decoder.h @@ -20,6 +20,8 @@ #ifndef ENCODING_PLAIN_DECODER_H #define ENCODING_PLAIN_DECODER_H +#include "decoder.h" + namespace storage { class PlainDecoder : public Decoder {
