Skip to content
  • Benjamin Otte's avatar
    array: return_if_fail() if element size is 0 · a6e149e4
    Benjamin Otte authored
    This is particular useful for:
      g_array_new (sizeof (MyStruct), FALSE, FALSE);
    because the correct incantation is
      g_array_new (FALSE, FALSE, sizeof (MyStruct));
    and these warnings will trigger in the first situation.
    a6e149e4