diff options
author | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-18 20:13:08 +0800 |
---|---|---|
committer | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-18 20:13:08 +0800 |
commit | 26a027caaf751cde502b6044ad91b208bbfdc8ca (patch) | |
tree | 4c7c2f1c1a43dafa2203fb335d6b9c63d9e28161 /src/convert/resolve.cpp | |
parent | def96a573903b5fcb95e8a8dffb94a3a9a7f8501 (diff) | |
download | mrust-26a027caaf751cde502b6044ad91b208bbfdc8ca.tar.gz |
Clean up debug output (make type printing prettier)
Diffstat (limited to 'src/convert/resolve.cpp')
-rw-r--r-- | src/convert/resolve.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/convert/resolve.cpp b/src/convert/resolve.cpp index 5c71cd8f..3a42beff 100644 --- a/src/convert/resolve.cpp +++ b/src/convert/resolve.cpp @@ -151,7 +151,6 @@ void CPathResolver::end_scope() void CPathResolver::handle_path(AST::Path& path, CASTIterator::PathMode mode)
{
- INDENT();
DEBUG("path = " << path);
// Handle generic components of the path
@@ -294,8 +293,6 @@ void CPathResolver::handle_path(AST::Path& path, CASTIterator::PathMode mode) if( mode != MODE_BIND )
throw ParseError::Generic("Name resolution failed");
}
-
- UNINDENT();
}
void CPathResolver::handle_type(TypeRef& type)
{
|