summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2015-09-20 13:40:54 +0800
committerJohn Hodge <tpg@mutabah.net>2015-09-20 13:40:54 +0800
commit3663599d6d0748c3d79ac91dcc89982faaa820ed (patch)
tree5c21f3443f1101b581807e37b3c4ad1d6a85b153 /src/include
parent8b22df5f2a6e1f37cf1964f82d369c8363e8016b (diff)
downloadmrust-3663599d6d0748c3d79ac91dcc89982faaa820ed.tar.gz
Do two passes of resolve to handle UFCS resolve problems
Diffstat (limited to 'src/include')
-rw-r--r--src/include/span.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/span.hpp b/src/include/span.hpp
index 452f37ba..3df70b72 100644
--- a/src/include/span.hpp
+++ b/src/include/span.hpp
@@ -41,9 +41,9 @@ struct Span
end_ofs(end_ofs)
{}
Span():
- filename(""),
+ filename("")/*,
start_line(0), start_ofs(0),
- end_line(0), end_ofs(0)
+ end_line(0), end_ofs(0) // */
{}
void bug(::std::function<void(::std::ostream&)> msg) const;