Explorar o código

Static assert which cannot be known at compile time, oops

Caleb James DeLisle hai 8 meses
pai
achega
ca5f157009
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      util/platform/netdev/NetPlatform_darwin.c

+ 1 - 1
util/platform/netdev/NetPlatform_darwin.c

@@ -222,7 +222,7 @@ static Er_DEFUN(struct ArrayList_OfPrefix* getRoutes(uint32_t ifIndex,
             prefix = prefixFromWeirdBSDMask(mask, ipv6);
         }
         struct Prefix* pfx = Allocator_calloc(allocator, sizeof(struct Prefix), 1);
-        Assert_compileTime(sizeof(pfx->ss) >= sa1->sa_len);
+        Assert_true(sizeof(pfx->ss) >= sa1->sa_len);
         Bits_memcpy(&pfx->ss, sa1, sa1->sa_len);
         pfx->prefix = prefix;
         ArrayList_OfPrefix_add(addrList, pfx);