Explorar el Código

Static assert which cannot be known at compile time, oops

Caleb James DeLisle hace 8 meses
padre
commit
ca5f157009
Se han modificado 1 ficheros con 1 adiciones y 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);