From 07658219ded47267b7f4eca5589b47f75a8777c8 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sun, 3 Jun 2012 19:42:53 -0700 Subject: [PATCH] Add dummy function fallthru(). --- src/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.h b/src/utils.h index 0e11312cbf..e0f3869480 100644 --- a/src/utils.h +++ b/src/utils.h @@ -7,9 +7,9 @@ #include #include "types.h" -// #include "uint256.h" #define nothing() do {} while (0) +#define fallthru() do {} while (0) #ifndef MAX #define MAX(x,y) ((x) < (y) ? (y) : (x))