diff options
Diffstat (limited to 'decoder/nt_span.h')
-rw-r--r-- | decoder/nt_span.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/nt_span.h b/decoder/nt_span.h index a918f301..6ff9391f 100644 --- a/decoder/nt_span.h +++ b/decoder/nt_span.h @@ -7,7 +7,7 @@ struct Span { int l,r; - Span() : l(-1) { } + Span() : l(-1), r(-1) { } bool is_null() const { return l<0; } void print(std::ostream &o,char const* for_null="") const { if (is_null()) |