summaryrefslogtreecommitdiff
path: root/src/hir
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-11-26 13:56:59 +0800
committerJohn Hodge <tpg@mutabah.net>2016-11-26 13:56:59 +0800
commit27cb4406131ddfb62e40a7d2b6ff8ec32a7a8c49 (patch)
tree38f578c64406a95942f63c0d58904b453a24a71b /src/hir
parent2f1e41b40f3546c300736b5b197b1e12815e0b27 (diff)
downloadmrust-27cb4406131ddfb62e40a7d2b6ff8ec32a7a8c49.tar.gz
HIR Serialise - Remove useless print
Diffstat (limited to 'src/hir')
-rw-r--r--src/hir/serialise_lowlevel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/serialise_lowlevel.cpp b/src/hir/serialise_lowlevel.cpp
index 05335633..95a547c8 100644
--- a/src/hir/serialise_lowlevel.cpp
+++ b/src/hir/serialise_lowlevel.cpp
@@ -247,7 +247,7 @@ size_t ReaderInner::read(void* buf, size_t len)
m_zstream.avail_in = m_backing.gcount();
if( m_zstream.avail_in == 0 ) {
m_byte_out_count += len - m_zstream.avail_out;
- ::std::cerr << "Out of bytes, " << m_zstream.avail_out << " needed" << ::std::endl;
+ //::std::cerr << "Out of bytes, " << m_zstream.avail_out << " needed" << ::std::endl;
return len - m_zstream.avail_out;
}
m_zstream.next_in = const_cast<unsigned char*>(m_buffer.data());