From d48665750ac3039b3310141f72ed36cf27f8cb8f Mon Sep 17 00:00:00 2001
From: Mirek Kratochvil <exa.exa@gmail.com>
Date: Sun, 29 Sep 2013 20:34:05 +0200
Subject: [PATCH] cubehash: remove forgotten debugging

---
 src/cubehash_impl.h | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/cubehash_impl.h b/src/cubehash_impl.h
index 9e131fc..4215af8 100644
--- a/src/cubehash_impl.h
+++ b/src/cubehash_impl.h
@@ -30,8 +30,6 @@
 #define ROT(a,b,n) (((a) << (b)) | ((a) >> (n - b)))
 #define i16(cmd) for(i=0;i<16;++i) cmd;
 
-#include "iohelpers.h"
-
 template < int I, //initialization rounds
          int R, //rounds
          int B, //input block size, less or equal 128
@@ -94,8 +92,6 @@ public:
 	}
 
 	void get_hash (byte*out) {
-		std::cout << std::hex;
-		for (int i = 0; i < 32; ++i) out (X[i]);
 		for (int i = 0; i < H; ++i)
 			out[i] = (X[i / 4] >> ( (i % 4) * 8) ) & 0xff;
 	}