diff options
Diffstat (limited to 'src/span.cpp')
-rw-r--r-- | src/span.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/span.cpp b/src/span.cpp index 29d7201b..8d176671 100644 --- a/src/span.cpp +++ b/src/span.cpp @@ -12,6 +12,7 @@ #include <common.hpp> Span::Span(const Span& x): + outer_span(x.outer_span), filename(x.filename), start_line(x.start_line), start_ofs(x.start_ofs), @@ -20,6 +21,7 @@ Span::Span(const Span& x): { } Span::Span(const Position& pos): + outer_span(), filename(pos.filename), start_line(pos.line), start_ofs(pos.ofs), @@ -28,6 +30,7 @@ Span::Span(const Position& pos): { } Span::Span(): + outer_span(), filename("")/*, start_line(0), start_ofs(0), end_line(0), end_ofs(0) // */ |