diff options
author | John Hodge <tpg@ucc.asn.au> | 2018-01-17 18:48:07 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2018-01-17 18:48:22 +0800 |
commit | 2f140fb851d99f04062f7480508009ece293f588 (patch) | |
tree | f422dac77969148c36a7dc4a76235765d0b9eaaf | |
parent | dc10bdbc8ad52e3a4f2a2b3bf2f2fa9b7c6194ee (diff) | |
download | mrust-2f140fb851d99f04062f7480508009ece293f588.tar.gz |
Span - Remove debug print when making an empty span (Can cause segfault on startup)
-rw-r--r-- | src/span.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/span.cpp b/src/span.cpp index 579f0df0..3d4d1ceb 100644 --- a/src/span.cpp +++ b/src/span.cpp @@ -35,7 +35,7 @@ Span::Span(): start_line(0), start_ofs(0), end_line(0), end_ofs(0) // */ { - DEBUG("Empty span"); + //DEBUG("Empty span"); //filename = FMT(":" << __builtin_return_address(0)); } |