check-structs: Disallow uint<N>_t because ovs_be<N> should always be used.
[openvswitch] / build-aux / check-structs
index 731a4e29f732a2fc4e7fded63c1da78bd4bcb645..e50e3101164d872a993774ac49f82f9559aad514 100755 (executable)
@@ -11,9 +11,6 @@ anyWarnings = False
 types = {}
 types['char'] = {"size": 1, "alignment": 1}
 types['uint8_t'] = {"size": 1, "alignment": 1}
-types['uint16_t'] = {"size": 2, "alignment": 2}
-types['uint32_t'] = {"size": 4, "alignment": 4}
-types['uint64_t'] = {"size": 8, "alignment": 8}
 types['ovs_be16'] = {"size": 2, "alignment": 2}
 types['ovs_be32'] = {"size": 4, "alignment": 4}
 types['ovs_be64'] = {"size": 8, "alignment": 8}