We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d931ea commit bd52486Copy full SHA for bd52486
1 file changed
src/libasr/diagnostics.h
@@ -23,7 +23,8 @@ struct Span {
23
// Lines of source code from first_line to last_line
24
std::vector<std::string> source_code;
25
26
- Span(const Location &loc) : loc{loc} {}
+ Span(const Location &loc)
27
+ : loc{loc}, first_line{0}, first_column{0}, last_line{0}, last_column{0} {}
28
};
29
30
/*
0 commit comments