Skip to content

Commit 373a8f7

Browse files
author
Huang-Ming Huang
committed
Fixed wrong return type of token_base::get_token()
1 parent b980b2e commit 373a8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mfast/coder/decoder_v2/fast_decoder_core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ template <> class decoder_pmap_saver<pmap_segment_size_zero> {
107107
template <bool MoreThanOneToken> struct token_base {
108108
unsigned current_token_;
109109

110-
void get_token() const { return current_token_; }
110+
unsigned get_token() const { return current_token_; }
111111
void set_token(unsigned token) { current_token_ = token; }
112112
};
113113

0 commit comments

Comments
 (0)