From 6a66fb6553387842f95fa3d84e3698232300b460 Mon Sep 17 00:00:00 2001 From: Julian Shun Date: Wed, 1 Apr 2015 13:19:05 -0400 Subject: [PATCH] delete _BSIZE --- utils.h | 1 - 1 file changed, 1 deletion(-) diff --git a/utils.h b/utils.h index 581883b..4cc118c 100644 --- a/utils.h +++ b/utils.h @@ -46,7 +46,6 @@ struct addF { E operator() (const E& a, const E& b) const {return a+b;}}; template struct minF { E operator() (const E& a, const E& b) const {return (a < b) ? a : b;}}; -#define _BSIZE 2048 #define _SCAN_LOG_BSIZE 10 #define _SCAN_BSIZE (1 << _SCAN_LOG_BSIZE)