diff options
author | Jan Huwald <jh@sotun.de> | 2013-06-14 08:36:26 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2013-06-14 08:36:26 (GMT) |
commit | 7359aee9fc678b1e900c51e369ffde9d555a56db (patch) | |
tree | 7f04708cfc01f74d8d82f2f1b45d817b07ca8057 | |
parent | 3f7d2140f99e61bea7c25396710fe4fd222a714d (diff) |
set default bit-width to 16
Default value should be quick to see what the program does.
-rw-r--r-- | cacount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cacount.cpp b/cacount.cpp index 1437c66..61c8a67 100644 --- a/cacount.cpp +++ b/cacount.cpp @@ -19,7 +19,7 @@ using namespace std; using boost::optional; #ifndef BIT_WIDTH -#define BIT_WIDTH 30 +#define BIT_WIDTH 16 #endif typedef typename boost::uint_t<BIT_WIDTH + 1>::least State; |