Remove most debug prints

This commit is contained in:
Alex Hultman
2019-01-22 09:41:48 +01:00
parent 87aea5a28c
commit 85889153b9
4 changed files with 2 additions and 18 deletions
-2
View File
@@ -111,7 +111,6 @@ struct DeflationStream {
}
~DeflationStream() {
std::cout << "Destructing DeflationStream" << std::endl;
deflateEnd(&deflationStream);
}
};
@@ -124,7 +123,6 @@ struct InflationStream {
}
~InflationStream() {
std::cout << "Destructing inflationstream" << std::endl;
inflateEnd(&inflationStream);
}