From 69f75af62d4b43c6823dd2508c75203d59f424a3 Mon Sep 17 00:00:00 2001 From: Teja Mupparti Date: Fri, 28 Oct 2022 10:24:15 -0700 Subject: [PATCH] Remove unused macros --- src/include/distributed/causal_clock.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/include/distributed/causal_clock.h b/src/include/distributed/causal_clock.h index bafc3a935..6e0054541 100644 --- a/src/include/distributed/causal_clock.h +++ b/src/include/distributed/causal_clock.h @@ -31,9 +31,6 @@ #define MAX_LOGICAL ((1LU << LOGICAL_BITS) - 1) #define MAX_COUNTER LOGICAL_MASK -#define GET_LOGICAL(x) ((x) >> COUNTER_BITS) -#define GET_COUNTER(x) ((x) & LOGICAL_MASK) - extern bool EnableClusterClock; extern void LogicalClockShmemInit(void);