remove CLIB_DEBUG conditional in fib_protocol_t
authorNeale Ranns <[email protected]>
Fri, 2 Dec 2016 18:15:48 +0000 (18:15 +0000)
committerDamjan Marion <[email protected]>
Fri, 2 Dec 2016 20:52:27 +0000 (20:52 +0000)
Change-Id: I179941fe615935e63c6f4eacf1193c6bfab6631d
Signed-off-by: Neale Ranns <[email protected]>
vnet/vnet/fib/fib_types.h

index 73eb944..0a15fef 100644 (file)
@@ -32,11 +32,7 @@ typedef u32 fib_node_index_t;
  * Protocol Type. packed so it consumes a u8 only
  */
 typedef enum fib_protocol_t_ {
-#if CLIB_DEBUG > 0
-    FIB_PROTOCOL_IP4 = 1,
-#else
     FIB_PROTOCOL_IP4 = 0,
-#endif
     FIB_PROTOCOL_IP6,
     FIB_PROTOCOL_MPLS,
 }  __attribute__ ((packed)) fib_protocol_t;